update package data
This commit is contained in:
parent
50c7a468c8
commit
2947722af4
48
README.md
48
README.md
@ -1,41 +1,47 @@
|
|||||||
# DevChat
|
# DevChat
|
||||||
|
|
||||||
DevChat is a programming assistant that helps developers, testers, and operations staff automate many tasks.
|

|
||||||
|
|
||||||
|
DevChat is a Visual Studio Code extension that allows you to chat with an AI-powered bot to help you with your coding tasks. Write prompts, not code.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Generate code driven by questions
|
- Chat with an AI-powered bot to get coding assistance
|
||||||
- Create smarter commit messages
|
- Add code snippets or files to the chat for context
|
||||||
|
- Configure AI model settings
|
||||||
## Requirements
|
|
||||||
|
|
||||||
- Python package: `pip install devchat`
|
|
||||||
- System package: `apt install dtm`
|
|
||||||
- Set your `OPENAI_API_KEY` environment variable
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Search for "DevChat" in the Visual Studio Code marketplace and click the "Install" button.
|
1. Open Visual Studio Code
|
||||||
|
2. Press `Ctrl+P` to open the Quick Open dialog
|
||||||
|
3. Type `ext install merico.devchat` and press `Enter`
|
||||||
|
4. Install devchat package by `pip install devchat`
|
||||||
|
5. setting your OPENAI_API_KEY in setting/DevChat
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Enter "DevChat" in the command palette to open the interactive page.
|
1. Open the chat panel by clicking on the "Chat with Bot" view in the Explorer or by running the "DevChat" command from the Command Palette (`Ctrl+Shift+P`).
|
||||||
|
2. Type your question or prompt in the input field and press `Enter` to send it to the AI bot.
|
||||||
|
3. To add code snippets or files to the chat, right-click on the selected code or file in the editor and choose "Add to DevChat" from the context menu.
|
||||||
|
|
||||||
## Settings
|
## Configuration
|
||||||
|
|
||||||
*Coming soon*
|
You can configure the following settings in your `settings.json` file:
|
||||||
|
|
||||||
## Known Issues
|
- `DevChat.llmModel`: Select the AI model to use (default: "OpenAI").
|
||||||
|
- `DevChat.maxLogCount`: Limit the number of prompts to output (default: 20).
|
||||||
*Coming soon*
|
- `DevChat.logSkip`: Skip a number of prompts before showing the prompt history (default: 0).
|
||||||
|
- `DevChat.OpenAI.model`: Specify the AI model (default: "gpt-4").
|
||||||
## Release Notes
|
- `DevChat.OpenAI.temperature`: Specify the AI model temperature (default: 0.2).
|
||||||
|
- `DevChat.OpenAI.stream`: Specify the AI model stream (default: true).
|
||||||
*Coming soon*
|
- `DevChat.OpenAI.tokensPerPrompt`: Specify the number of tokens for each prompt (default: 6000).
|
||||||
|
- `DevChat.OpenAI.useHistoryPrompt`: Use history prompts as context (default: true).
|
||||||
|
- `DevChat.OpenAI.apiKey`: OpenAI API Key (default: "").
|
||||||
|
- `DevChat.OpenAI.EndPoint`: OpenAI API server (default: "").
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
*Coming soon*
|
If you have any suggestions or issues, please feel free to open an issue or submit a pull request on the [GitHub repository](https://github.com/covespace/devchat-vscode.git).
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 4.7 KiB |
10
package.json
10
package.json
@ -1,13 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "devchat",
|
"name": "devchat",
|
||||||
"displayName": "devchat",
|
"displayName": "DevChat",
|
||||||
"description": "devchat",
|
"description": "Write prompts, not code",
|
||||||
"version": "0.0.27",
|
"version": "0.0.28",
|
||||||
"icon": "assets/devchat.png",
|
"icon": "assets/devchat.png",
|
||||||
"publisher": "merico",
|
"publisher": "merico",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.77.0"
|
"vscode": "^1.77.0"
|
||||||
},
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/covespace/devchat-vscode.git"
|
||||||
|
},
|
||||||
"categories": [
|
"categories": [
|
||||||
"Other"
|
"Other"
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user