Spaces:
Build error
Build error
Add chroma
Browse files- .env +32 -0
- realtime_ai_character/__pycache__/__init__.cpython-311.pyc +0 -0
- realtime_ai_character/__pycache__/logger.cpython-311.pyc +0 -0
- realtime_ai_character/__pycache__/main.cpython-311.pyc +0 -0
- realtime_ai_character/__pycache__/restful_routes.cpython-311.pyc +0 -0
- realtime_ai_character/__pycache__/utils.cpython-311.pyc +0 -0
- realtime_ai_character/__pycache__/websocket_routes.cpython-311.pyc +0 -0
- realtime_ai_character/audio/__pycache__/__init__.cpython-311.pyc +0 -0
- realtime_ai_character/audio/speech_to_text/__pycache__/__init__.cpython-311.pyc +0 -0
- realtime_ai_character/audio/speech_to_text/__pycache__/base.cpython-311.pyc +0 -0
- realtime_ai_character/audio/speech_to_text/__pycache__/whisper.cpython-311.pyc +0 -0
- realtime_ai_character/audio/text_to_speech/__pycache__/__init__.cpython-311.pyc +0 -0
- realtime_ai_character/audio/text_to_speech/__pycache__/base.cpython-311.pyc +0 -0
- realtime_ai_character/audio/text_to_speech/__pycache__/elevenlabs.cpython-311.pyc +0 -0
- realtime_ai_character/character_catalog/__pycache__/catalog_manager.cpython-311.pyc +0 -0
- realtime_ai_character/database/__pycache__/__init__.cpython-311.pyc +0 -0
- realtime_ai_character/database/__pycache__/base.cpython-311.pyc +0 -0
- realtime_ai_character/database/__pycache__/chroma.cpython-311.pyc +0 -0
- realtime_ai_character/database/__pycache__/connection.cpython-311.pyc +0 -0
- realtime_ai_character/llm/__pycache__/__init__.cpython-311.pyc +0 -0
- realtime_ai_character/llm/__pycache__/base.cpython-311.pyc +0 -0
- realtime_ai_character/models/__pycache__/__init__.cpython-311.pyc +0 -0
- realtime_ai_character/models/__pycache__/interaction.cpython-311.pyc +0 -0
.env
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
DATABASE_URL=sqlite:///./test.db
|
| 2 |
+
|
| 3 |
+
# LLM
|
| 4 |
+
OPENAI_API_KEY=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
|
| 5 |
+
|
| 6 |
+
# Speech to text
|
| 7 |
+
# "GOOGLE" or "OPENAI_WHISPER" or "LOCAL_WHISPER"
|
| 8 |
+
SPEECH_TO_TEXT_USE=LOCAL_WHISPER
|
| 9 |
+
# Path to google credentials
|
| 10 |
+
GOOGLE_APPLICATION_CREDENTIALS=google_credentials.json
|
| 11 |
+
# Same as OPENAI_API_KEY if you use OPENAI_WHISPER
|
| 12 |
+
OPEN_AI_WHISPER_API_KEY=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
|
| 13 |
+
|
| 14 |
+
# Text to speech
|
| 15 |
+
# Only "ELEVEN_LABS" for now
|
| 16 |
+
TEXT_TO_SPEECH_USE=ELEVEN_LABS
|
| 17 |
+
ELEVEN_LABS_API_KEY=9ed0d713d783c5a0e654dd3bddcf7f04
|
| 18 |
+
|
| 19 |
+
# Enable basic auth
|
| 20 |
+
# leave empty to disable
|
| 21 |
+
USE_AUTH=
|
| 22 |
+
FIREBASE_CONFIG_PATH=
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
LANGCHAIN_TRACING_V2=true # default off
|
| 26 |
+
LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
|
| 27 |
+
LANGCHAIN_API_KEY=ls__304a1f503bd1433eaece858e9601c777
|
| 28 |
+
LANGCHAIN_PROJECT=realchar-dev
|
| 29 |
+
|
| 30 |
+
ELON_VOICE=pkR5tvu0WMvDEf8i4UZT
|
| 31 |
+
JOBS_VOICE=kkVl0o5gEFKeTiC6YT0W
|
| 32 |
+
|
realtime_ai_character/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/__pycache__/__init__.cpython-311.pyc and b/realtime_ai_character/__pycache__/__init__.cpython-311.pyc differ
|
|
|
realtime_ai_character/__pycache__/logger.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/__pycache__/logger.cpython-311.pyc and b/realtime_ai_character/__pycache__/logger.cpython-311.pyc differ
|
|
|
realtime_ai_character/__pycache__/main.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/__pycache__/main.cpython-311.pyc and b/realtime_ai_character/__pycache__/main.cpython-311.pyc differ
|
|
|
realtime_ai_character/__pycache__/restful_routes.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/__pycache__/restful_routes.cpython-311.pyc and b/realtime_ai_character/__pycache__/restful_routes.cpython-311.pyc differ
|
|
|
realtime_ai_character/__pycache__/utils.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/__pycache__/utils.cpython-311.pyc and b/realtime_ai_character/__pycache__/utils.cpython-311.pyc differ
|
|
|
realtime_ai_character/__pycache__/websocket_routes.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/__pycache__/websocket_routes.cpython-311.pyc and b/realtime_ai_character/__pycache__/websocket_routes.cpython-311.pyc differ
|
|
|
realtime_ai_character/audio/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/audio/__pycache__/__init__.cpython-311.pyc and b/realtime_ai_character/audio/__pycache__/__init__.cpython-311.pyc differ
|
|
|
realtime_ai_character/audio/speech_to_text/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/audio/speech_to_text/__pycache__/__init__.cpython-311.pyc and b/realtime_ai_character/audio/speech_to_text/__pycache__/__init__.cpython-311.pyc differ
|
|
|
realtime_ai_character/audio/speech_to_text/__pycache__/base.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/audio/speech_to_text/__pycache__/base.cpython-311.pyc and b/realtime_ai_character/audio/speech_to_text/__pycache__/base.cpython-311.pyc differ
|
|
|
realtime_ai_character/audio/speech_to_text/__pycache__/whisper.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/audio/speech_to_text/__pycache__/whisper.cpython-311.pyc and b/realtime_ai_character/audio/speech_to_text/__pycache__/whisper.cpython-311.pyc differ
|
|
|
realtime_ai_character/audio/text_to_speech/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/audio/text_to_speech/__pycache__/__init__.cpython-311.pyc and b/realtime_ai_character/audio/text_to_speech/__pycache__/__init__.cpython-311.pyc differ
|
|
|
realtime_ai_character/audio/text_to_speech/__pycache__/base.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/audio/text_to_speech/__pycache__/base.cpython-311.pyc and b/realtime_ai_character/audio/text_to_speech/__pycache__/base.cpython-311.pyc differ
|
|
|
realtime_ai_character/audio/text_to_speech/__pycache__/elevenlabs.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/audio/text_to_speech/__pycache__/elevenlabs.cpython-311.pyc and b/realtime_ai_character/audio/text_to_speech/__pycache__/elevenlabs.cpython-311.pyc differ
|
|
|
realtime_ai_character/character_catalog/__pycache__/catalog_manager.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/character_catalog/__pycache__/catalog_manager.cpython-311.pyc and b/realtime_ai_character/character_catalog/__pycache__/catalog_manager.cpython-311.pyc differ
|
|
|
realtime_ai_character/database/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/database/__pycache__/__init__.cpython-311.pyc and b/realtime_ai_character/database/__pycache__/__init__.cpython-311.pyc differ
|
|
|
realtime_ai_character/database/__pycache__/base.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/database/__pycache__/base.cpython-311.pyc and b/realtime_ai_character/database/__pycache__/base.cpython-311.pyc differ
|
|
|
realtime_ai_character/database/__pycache__/chroma.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/database/__pycache__/chroma.cpython-311.pyc and b/realtime_ai_character/database/__pycache__/chroma.cpython-311.pyc differ
|
|
|
realtime_ai_character/database/__pycache__/connection.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/database/__pycache__/connection.cpython-311.pyc and b/realtime_ai_character/database/__pycache__/connection.cpython-311.pyc differ
|
|
|
realtime_ai_character/llm/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/llm/__pycache__/__init__.cpython-311.pyc and b/realtime_ai_character/llm/__pycache__/__init__.cpython-311.pyc differ
|
|
|
realtime_ai_character/llm/__pycache__/base.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/llm/__pycache__/base.cpython-311.pyc and b/realtime_ai_character/llm/__pycache__/base.cpython-311.pyc differ
|
|
|
realtime_ai_character/models/__pycache__/__init__.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/models/__pycache__/__init__.cpython-311.pyc and b/realtime_ai_character/models/__pycache__/__init__.cpython-311.pyc differ
|
|
|
realtime_ai_character/models/__pycache__/interaction.cpython-311.pyc
CHANGED
|
Binary files a/realtime_ai_character/models/__pycache__/interaction.cpython-311.pyc and b/realtime_ai_character/models/__pycache__/interaction.cpython-311.pyc differ
|
|
|