Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Interactive command-line chat application that:

- Accepts free-text prompts in a REPL-style loop.
- Sends the conversation to **OpenAI’s Responses API** (`gpt-5.4-nano`)
- Sends the conversation to **OpenAI’s Responses API** (`gpt-4.1-nano`)
with streaming.
- Lets the LLM call **two external tools** — weather and research —
backed by a remote API.
Expand Down Expand Up @@ -154,7 +154,7 @@ are dropped.

#### 6.2 Constants & Config (lines 23–36)

- **Model**: `gpt-5.4-nano`
- **Model**: `gpt-4.1-nano`
- **Base URL**:
`https://elyos-interview-907656039105.europe-west2.run.app`
- **Auth**: `X-API-Key` header from `ELYOS_API_KEY`
Expand Down
2 changes: 1 addition & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Message = {
content: string;
};

const model = "gpt-5.4-nano" as const;
const model = "gpt-4.1-nano" as const;

const api = ky.create({
baseUrl: "https://elyos-interview-907656039105.europe-west2.run.app",
Expand Down