From 8f841d83d4c895e5092547a76fee89a7a2d619d3 Mon Sep 17 00:00:00 2001 From: Joel Bryan Juliano Date: Tue, 3 Sep 2024 23:39:56 +0200 Subject: [PATCH] removed read resource for now --- deps/pkl/LLM.pkl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deps/pkl/LLM.pkl b/deps/pkl/LLM.pkl index f98e4bb..6f5f2a4 100644 --- a/deps/pkl/LLM.pkl +++ b/deps/pkl/LLM.pkl @@ -30,10 +30,10 @@ class Parameter { } class LLMAPIKeys { - openai_api_key: String? = read("env:OPENAI_API_KEY") ?? "" - mistral_api_key: String? = read("env:MISTRAL_API_KEY") ?? "" - huggingface_api_token: String? = read("env:HUGGINGFACE_API_TOKEN") ?? "" - groq_api_key: String? = read("env:GROQ_API_KEY") ?? "" + openai_api_key: String? + mistral_api_key: String? + huggingface_api_token: String? + groq_api_key: String? } class ModelFile {