mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-30 13:03:16 +00:00
Simplify prompt
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
2b1aeb07bc
commit
093ce8a9ac
1 changed files with 3 additions and 2 deletions
|
@ -686,8 +686,9 @@ impl Assistant {
|
||||||
})
|
})
|
||||||
.chain(Some(RequestMessage {
|
.chain(Some(RequestMessage {
|
||||||
role: Role::User,
|
role: Role::User,
|
||||||
content: "Summarize the conversation into a short title without punctuation and with as few characters as possible"
|
content:
|
||||||
.into(),
|
"Summarize the conversation into a short title without punctuation"
|
||||||
|
.into(),
|
||||||
}))
|
}))
|
||||||
.collect();
|
.collect();
|
||||||
let request = OpenAIRequest {
|
let request = OpenAIRequest {
|
||||||
|
|
Loading…
Reference in a new issue