replicate/llama2 provider

Still need to fix the types but it runs
This commit is contained in:
Kyle Corbitt
2023-07-20 19:55:03 -07:00
parent 332a2101c0
commit 847753c32b
14 changed files with 202 additions and 29 deletions

View File

@@ -2,8 +2,8 @@ import { type JSONSchema4 } from "json-schema";
import { type JsonValue } from "type-fest";
type ModelProviderModel = {
name: string;
learnMore: string;
name?: string;
learnMore?: string;
};
export type CompletionResponse<T> =