Dev - #2
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR tightens CLI startup/configuration by making OPENAI_MODEL a required setting, surfacing the selected model in the Ink UI, and adding project metadata/lockfile for reproducible installs.
Changes:
- Enforce
OPENAI_MODELpresence in the LLM layer and in the CLI UI (status + inline warning + submit guard). - Add root
package.json+pnpm-lock.yamland update README quickstart to usepnpm dev. - Adjust TS config to include Node types and update
.env.example/.gitignore.
Reviewed changes
Copilot reviewed 5 out of 8 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| tsconfig.json | Adds explicit TypeScript types configuration (Node typings). |
| source/app.tsx | Displays configured model and blocks interactions when OPENAI_MODEL is missing. |
| packages/agent-core/src/core/llm.ts | Loads dotenv files and throws a clear error when model is missing. |
| README.md | Updates quickstart commands and documents OPENAI_MODEL as required. |
| .env.example | Updates example env vars to reflect required model and base URL guidance. |
| package.json | Introduces project scripts (dev/start/typecheck/test/build) and dependencies. |
| pnpm-lock.yaml | Adds lockfile for deterministic installs. |
| .gitignore | Stops ignoring package metadata and adjusts ignored paths. |
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+4
to
+5
| dotenv.config(); | ||
| dotenv.config({ path: '.env.local' }); |
| # Optional: custom OpenAI-compatible base URL | ||
| # 留空时使用 OpenAI 默认地址;DeepSeek 可填写 https://api.deepseek.com | ||
| OPENAI_API_BASE_URL=https://api.deepseek.com | ||
| OPENAI_API_BASE_URL=xxx |
|
|
||
| ```bash | ||
| pnpm exec tsx source/app.tsx | ||
| pnpm dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.