Add support for replied messages
This commit is contained in:
parent
f56db6595c
commit
f91cb6378c
1 changed files with 0 additions and 1 deletions
|
|
@ -12,7 +12,6 @@ const getTextGemini = async (
|
||||||
input: string,
|
input: string,
|
||||||
oldInput?: string,
|
oldInput?: string,
|
||||||
): Promise<AIResponseText> => {
|
): Promise<AIResponseText> => {
|
||||||
console.log([oldInput, input]);
|
|
||||||
const response = await googleAI.models.generateContent({
|
const response = await googleAI.models.generateContent({
|
||||||
model: "gemini-3-flash-preview",
|
model: "gemini-3-flash-preview",
|
||||||
contents: oldInput ? [oldInput, input] : input,
|
contents: oldInput ? [oldInput, input] : input,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue