remove initiatives folder

This commit is contained in:
Дмитриев Максим Сергеевич
2025-06-16 14:02:19 +03:00
parent 4fe16e5aa8
commit 8090de8031
3 changed files with 0 additions and 116 deletions

View File

@@ -1,22 +0,0 @@
import { GigaChat as GigaChatLang} from 'langchain-gigachat';
import { GigaChat } from 'gigachat';
import { Agent } from 'node:https';
const httpsAgent = new Agent({
rejectUnauthorized: false,
});
export const llm_mod = (GIGA_AUTH) =>
new GigaChatLang({
credentials: GIGA_AUTH,
temperature: 0.2,
model: 'GigaChat-2-Max',
httpsAgent,
});
export const llm_gen = (GIGA_AUTH) =>
new GigaChat({
credentials: GIGA_AUTH,
model: 'GigaChat-2',
httpsAgent,
});