Skip to content

Commit

Permalink
docs and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ptorru committed Sep 6, 2024
1 parent 8863373 commit 4887da6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 3 additions & 1 deletion ner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ Using LLMs for data extraction can benefit several industries and applications:
* Law: Extract subject names, company names, addresses, facts, and other key points from contracts.
* Education: Create preparation cards based on student assignments.

In this playground you can easily modify the schema that will be used by the LLM to identify and extract key pieces of information in an structured manner. You can run several files through the same schema, finishing with a table that can be exported to a CSV file or other types of databases.

## For Developers
Developers are encouraged to see the code for this application and create their own. This project has been packaed with [Poetry](https://python-poetry.org/docs/) for Python.
If you are a developers then you are more than welcome to see the code for this application and create your own. This project has been packaed with [Poetry](https://python-poetry.org/docs/) for Python.

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/octoml/octoai-solutions)

Expand Down
5 changes: 0 additions & 5 deletions transcription/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@
)
OCTOAI_BASE_URL = os.getenv("OCTOAI_BASE_URL", "https://text.octoai.run/v1")

MIXTRAL8X7B_BASE_URL = os.getenv("MIXTRAL8X7B_BASE_URL", "https://text.octoai.run/v1")
HERMES2THETA_API_URL = os.getenv("HERMES2THETA_API_URL", "https://text.octoai.run/v1")
MISTRAL7B_BASE_URL = os.getenv("MISTRAL7B_BASE_URL", "https://text.octoai.run/v1")
WIZARDLM_BASE_URL = os.getenv("WIZARDLM_BASE_URL", "https://text.octoai.run/v1")

RUNNING_SNOWFLAKE_NATIVE = os.getenv("RUNNING_SNOWFLAKE_NATIVE", False)


Expand Down

0 comments on commit 4887da6

Please sign in to comment.