Skip to content

Commit

Permalink
Set default loglevel to INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
paulovcmedeiros committed Nov 14, 2023
1 parent 19033e8 commit ee68057
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ The package is written in Python. The web chatbot UI is made with [Streamlit](ht
**See and try the [demo web app on Streamlit](https://pyrobbot.streamlit.app)!**

## Features
- [x] Text to speech and speech to text
- [x] Text to speech and speech to text (`rob voice`)
- Talk to the GPT assistant!
- You can choose your preferred language (e.g., `rob voice --lang pt-br`)
- [x] Web UI
- Add/remove conversations dynamically
- Automatic/editable conversation summary title
Expand Down
5 changes: 5 additions & 0 deletions pyrobbot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@
"""Unnoficial OpenAI API UI and CLI tool."""
import hashlib
import os
import sys
import tempfile
import uuid
from dataclasses import dataclass
from importlib.metadata import metadata, version
from pathlib import Path

import openai
from loguru import logger

logger.remove()
logger.add(sys.stderr, level="INFO")


@dataclass
Expand Down

0 comments on commit ee68057

Please sign in to comment.