add compute node for llama

This commit is contained in:
streetycat
2023-09-17 13:16:21 +00:00
parent dd3187fc8a
commit f9269e27d5
11 changed files with 334 additions and 20 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ class Environment:
def get_value(self,key:str) -> Optional[str]:
handler = self.get_handlers.get(key)
if handler is not None:
return handler(key)
return handler()
s = self.values.get(key)
if isinstance(s,str):