chore: setup docker, gitea actions pipeline and docs
Some checks failed
Build and Deploy / build-and-push (push) Failing after 3m18s

This commit is contained in:
Cauê Faleiros
2026-02-19 14:25:42 -03:00
parent a5fe089e2e
commit 25384beaa7
5 changed files with 167 additions and 0 deletions

View File

@@ -20,6 +20,10 @@ interface Message {
}
export const AIChatAssistant: React.FC<AIChatAssistantProps> = ({ userName, contextData }) => {
if (!process.env.API_KEY) {
return null;
}
const [isOpen, setIsOpen] = useState(false);
const [isTyping, setIsTyping] = useState(false);
const [inputValue, setInputValue] = useState('');