You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker run -p80:3000 foo/auto-llama
Traceback (most recent call last):
File "/app/main.py", line 3, in <module>
import commands as cmd
File "/app/commands.py", line 1, in <module>
import browse
File "/app/browse.py", line 4, in <module>
from llm_utils import create_chat_completion
File "/app/llm_utils.py", line 4, in <module>
cfg = Config()
^^^^^^^^
File "/app/config.py", line 18, in __call__
cls._instances[cls] = super(
^^^^^^
File "/app/config.py", line 69, in __init__
self.EMBED_DIM = int(os.getenv("EMBED_DIM"))
^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
(base)
Expected behavior 🤔
Was hoping the app would run after the steps above.
I'm sure I'm misconfiguring the setup.
Your prompt 📝
# Paste your prompt here
The text was updated successfully, but these errors were encountered:
ok, so we miss the com.docker.compose.project.environment_file file label, which should have been set to point to your .env file, but is only set when an explicit --enf-file flag is passed. We need to fix this, or ensure Docker Desktop UI don't need this. This typically will be possible once we implement https://github.com/docker/compose-cli/issues/984
Duplicates
Steps to reproduce 🕹
ggml-vicuna-13b-4bit.bin
model.env
file (From the default)docker build -t foo/auto-llama .
docker run -p80:3000 foo/auto-llama
Current behavior 😯
Expected behavior 🤔
Was hoping the app would run after the steps above.
I'm sure I'm misconfiguring the setup.
Your prompt 📝
# Paste your prompt here
The text was updated successfully, but these errors were encountered: