microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
python/nprData/example_env
14lines · modecode
| 1 | # Copyright (c) Microsoft Corporation and Henry Lucco. |
| 2 | # Licensed under the MIT License. |
| 3 | |
| 4 | # LLM Keys |
| 5 | export GROQ_API_KEY="" |
| 6 | export OPENAI_API_KEY="" |
| 7 | # LLM Models |
| 8 | export GROQ_MODEL="mixtral-8x7b-32768" |
| 9 | export OPENAI_MODEL="gpt-4o" |
| 10 | # Emebedding Models |
| 11 | # export EMBEDDING_MODEL="text-embedding-3-small" |
| 12 | export EMBEDDING_MODEL="text-embedding-ada-002" |
| 13 | # General |
| 14 | export VECTOR_DB_URI="http://localhost:6333" |