Timothy Jaeryang Baek 3 ay önce
ebeveyn
işleme
8380d3f5ae
1 değiştirilmiş dosya ile 2 ekleme ve 10 silme
  1. 2 10
      src/lib/apis/ollama/index.ts

+ 2 - 10
src/lib/apis/ollama/index.ts

@@ -360,12 +360,7 @@ export const generateChatCompletion = async (token: string = '', body: object) =
 	return [res, controller];
 	return [res, controller];
 };
 };
 
 
-export const createModel = async (
-	token: string,
-	tagName: string,
-	content: string,
-	urlIdx: string | null = null
-) => {
+export const createModel = async (token: string, payload: object, urlIdx: string | null = null) => {
 	let error = null;
 	let error = null;
 
 
 	const res = await fetch(
 	const res = await fetch(
@@ -377,10 +372,7 @@ export const createModel = async (
 				'Content-Type': 'application/json',
 				'Content-Type': 'application/json',
 				Authorization: `Bearer ${token}`
 				Authorization: `Bearer ${token}`
 			},
 			},
-			body: JSON.stringify({
-				name: tagName,
-				modelfile: content
-			})
+			body: JSON.stringify(payload)
 		}
 		}
 	).catch((err) => {
 	).catch((err) => {
 		error = err;
 		error = err;