AzureOpenAI support (#102)

* Readme text tweak
* Added support for OpenAI in Azure
* Based AzureOpenAI support
This commit is contained in:
Jack Colquitt 2024-10-04 06:44:50 -07:00 committed by GitHub
parent 090f09fa38
commit d96ef8269a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 229 additions and 3 deletions

View file

@ -105,16 +105,16 @@ TrustGraph extracts knowledge from a text corpus (PDF or text) to an ultra-dense
- Entity Extraction Agent
- Node Connection Agent
The agent prompts are built through templates, enabling customized extraction agents for a specific use case. The extraction agents are launched automatically with either of following commands pointing to the path of a desired text corpus or the included sample files:
The agent prompts are built through templates, enabling customized extraction agents for a specific use case. The extraction agents are launched automatically with the loader commands.
PDF file:
```
tg-load-pdf sample-text-corpus.pdf
tg-load-pdf <document.pdf>
```
Text file:
```
tg-load-text sample-text-corpus.txt
tg-load-text <document.txt>
```
## GraphRAG Queries