Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/renderer/packages/models/ollama.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ export default class Ollama extends Base {
const messages = rawMessages.map(m => ({ role: m.role, content: m.content }))
const res = await this.post(
`${this.getHost()}/api/chat`,
{ 'Content-Type': 'application/json' },
{
'Content-Type': 'application/json',
'ngrok-skip-browser-warning': '1',
},
{
model: this.options.ollamaModel,
messages,
Expand Down Expand Up @@ -68,7 +71,7 @@ export default class Ollama extends Base {
}

async listModels(): Promise<string[]> {
const res = await this.get(`${this.getHost()}/api/tags`, {})
const res = await this.get(`${this.getHost()}/api/tags`, { 'ngrok-skip-browser-warning': '1', })
const json = await res.json()
if (! json['models']) {
throw new ApiError(JSON.stringify(json))
Expand Down