Upload files to "/"
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
## Commit message
|
||||
|
||||
You are an expert at writing Git commits. Your job is to write a short clear commit message that summarizes the changes.
|
||||
|
||||
If you can accurately express the change in just the subject line, don't include anything in the message body. Only use the body when it is providing *useful* information.
|
||||
|
||||
Don't repeat information from the subject line in the message body.
|
||||
|
||||
Only return the commit message in your response. Do not include any additional meta-commentary about the task. Do not include the raw diff output in the commit message.
|
||||
|
||||
Follow good Git style:
|
||||
|
||||
- Separate the subject from the body with a blank line
|
||||
- Try to limit the subject line to 50 characters
|
||||
- Capitalize the subject line
|
||||
- Do not end the subject line with any punctuation
|
||||
- Use the imperative mood in the subject line
|
||||
- Wrap the body at 72 characters
|
||||
- Keep the body short and concise (omit it entirely if not useful)
|
||||
+119
@@ -0,0 +1,119 @@
|
||||
// Zed settings
|
||||
//
|
||||
// For information on how to configure Zed, see the Zed
|
||||
// documentation: https://zed.dev/docs/configuring-zed
|
||||
//
|
||||
// To see all of Zed's default settings without changing your
|
||||
// custom settings, run `zed: open default settings` from the
|
||||
// command palette (cmd-shift-p / ctrl-shift-p)
|
||||
{
|
||||
"disable_ai": false,
|
||||
"project_panel": {
|
||||
"dock": "right"
|
||||
},
|
||||
"outline_panel": {
|
||||
"dock": "right"
|
||||
},
|
||||
"collaboration_panel": {
|
||||
"dock": "right"
|
||||
},
|
||||
"git_panel": {
|
||||
"dock": "right"
|
||||
},
|
||||
"icon_theme": "Material Icon Theme",
|
||||
"cli_default_open_behavior": "existing_window",
|
||||
"language_models": {
|
||||
"ollama": {
|
||||
"api_url": "http://localhost:11434",
|
||||
"auto_discover": true
|
||||
},
|
||||
"openai_compatible": {
|
||||
"citadel": {
|
||||
"api_url": "http://localhost:11434/v1",
|
||||
"available_models": [
|
||||
{
|
||||
"name": "qwen3.6:12b",
|
||||
"max_tokens": 265000,
|
||||
"max_output_tokens": 128000,
|
||||
"reasoning_effort": "high",
|
||||
"capabilities": {
|
||||
"tools": true,
|
||||
"images": true,
|
||||
"parallel_tool_calls": true,
|
||||
"prompt_cache_key": false,
|
||||
"chat_completions": true,
|
||||
"interleaved_reasoning": true,
|
||||
"max_tokens_parameter": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"daedalus": {
|
||||
"api_url": "http://10.100.104.41:11434/v1",
|
||||
"available_models": [
|
||||
{
|
||||
"name": "qwen3.6:12b",
|
||||
"max_tokens": 265000,
|
||||
"max_output_tokens": 128000,
|
||||
"reasoning_effort": "high",
|
||||
"capabilities": {
|
||||
"tools": true,
|
||||
"images": true,
|
||||
"parallel_tool_calls": true,
|
||||
"prompt_cache_key": false,
|
||||
"chat_completions": true,
|
||||
"interleaved_reasoning": true,
|
||||
"max_tokens_parameter": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"agent_servers": {
|
||||
"pi-acp": {
|
||||
"type": "registry"
|
||||
}
|
||||
},
|
||||
"edit_predictions": {
|
||||
"open_ai_compatible_api": {
|
||||
"max_output_tokens": 6
|
||||
},
|
||||
"mode": "subtle",
|
||||
"allow_data_collection": "no",
|
||||
"ollama": {
|
||||
"max_output_tokens": 6,
|
||||
"prompt_format": "qwen",
|
||||
"model": "nate/instinct:latest",
|
||||
"api_url": "http://localhost:11434"
|
||||
},
|
||||
"provider": "ollama"
|
||||
},
|
||||
"session": {
|
||||
"trust_all_worktrees": true
|
||||
},
|
||||
"agent": {
|
||||
"sidebar_side": "right",
|
||||
"dock": "left",
|
||||
"thinking_display": "always_expanded",
|
||||
"enabled": false,
|
||||
"button": false,
|
||||
"favorite_models": [],
|
||||
"model_parameters": []
|
||||
},
|
||||
"show_signature_help_after_edits": false,
|
||||
"auto_signature_help": false,
|
||||
"minimap": {
|
||||
"show": "always"
|
||||
},
|
||||
"show_completions_on_input": false,
|
||||
"show_edit_predictions": true,
|
||||
"base_keymap": "VSCode",
|
||||
"ui_font_size": 16,
|
||||
"buffer_font_size": 15,
|
||||
"theme": {
|
||||
"mode": "system",
|
||||
"light": "One Light",
|
||||
"dark": "Carbonfox - blurred",
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user