Guerdal
Guerdal
Find in the Github readme Change Wayland to X11 (Xorg) RustDesk does not support Wayland. Check [this](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) to configuring Xorg as the default GNOME session. So not the solution for...
Ollama can be used for PdfSearchTool with ``` PDFSearchTool = PDFSearchTool(pdf=pdf_file_path, config=dict( llm=dict( provider="ollama", # or google, openai, anthropic, llama2, ... config=dict( model="llama3:8b-instruct-q6_K", base_url="http://ollama_server_ip:11434", ), ), embedder=dict( provider="ollama", config=dict( model="mxbai-embed-large:latest",...
As I write earlier the last version of embedchain (0.1.103) is compatible with ollama and need upgrade chromadb to 0.5.0. But crewai-tools need chromadb < 0.5.0 so we must wait...
I must have missed something :-) @joaomdmoura ``` pip install -U crewai[tools]==0.30.0rc5 ..... Requirement already satisfied: pycparser in ./.local/lib/python3.10/site-packages (from cffi>=1.4.1->pynacl>=1.4.0->PyGithub=1.59.1->embedchain=0.1.98->crewai[tools]==0.30.0rc5) (2.21) Installing collected packages: crewai, crewai-tools Attempting uninstall: crewai...
Hello Perhaps it would be possible to use the https://github.com/karust/openserp.git project. Knowing that it is installable via docker too.
Hello I have already made this change in devika.dockerfile, I think the problem came with #24 and the use of socket.io. But maybe I'm wrong. And my lack of skills...
I try your modifications in ui with paste ui directory in place of ui of devika sources. I build the dockers and voila!! all functions. Great work :-)
It's normal, https://github.com/stitionai/devika/pull/197 replace it by sample.config.toml. You need to copy that file to config.toml and modify it with the good informations
For me I modify the docker-compose.yml to add a link to config.toml with volume ``` devika-backend-engine: build: context: . dockerfile: devika.dockerfile expose: - 1337 ports: - 1337:1337 environment: - OLLAMA_HOST=http://IP_OLLAMA_SERVER:11434...
and It's normal, https://github.com/stitionai/devika/pull/197 replace it by sample.config.toml. So you need to create config.toml before launch docker build. And my modification to docker-compose.yaml permit to modify the config whitout reconstruct...