update config

This commit is contained in:
csunny
2023-05-09 00:15:19 +08:00
parent 8af4f5e378
commit 9e7a68349a
4 changed files with 59 additions and 7 deletions

11
pilot/model/base.py Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from typing import List, TypedDict
class Message(TypedDict):
"""LLM Message object containing usually like (role: content) """
role: str
content: str