Catarino

Results 7 comments of Catarino

crashed for me too

Hi Shaun, thank you so much for such a detailed reply. yep it's for the avatar images in my weddar app leaderboard screen. I'm not the iOS developer for the...

Hi Shaun, I've managed to fix this issue that Xcode 4.5 brought. Code below /\* _Bug fixed_ This caused the leaderboard flickering bug before v1.7.9 - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView { [self...

You have to change the following lines in the .env file ``` OPENAI_ENDPOINT=http://localhost:1234/v1/chat/completions OPENAI_API_KEY=lm-studio ``` (Replace `lm-studio` with the key you have setup in LM Studio)

I'm not getting embeddings to work. I'm using LM Studio. Chat and tabAutocomplete are working as expected. config.json file has: ``` { "title": "LM studio", "provider": "lmstudio", "model": "AUTODETECT", "apiBase":...

Actually I think I found the problem: Continue is looking for Ollama's `http://127.0.0.1:1234/api/embeddings` instead of `http://127.0.0.1:1234/v1/embeddings` used by LM Studio I think this is another bug, probably should add it...

> "model": "nomic-ai/nomic-embed-text-v1.5.Q8_0.gguf", > "apiBase": "http://localhost:1234/v1/" It works :) the only thing I changed was `"provider": "openai"`. I had `"provider": "ollama"` didn't know the provider part was so important. Thanks...