Skip to content

Commit

Permalink
Use unicode emojis instead of markdown emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Jan 10, 2025
1 parent a3126bd commit 5b1007c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ragna/assistants/_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ def answer(self, messages: list[Message]) -> Iterator[str]:
def _markdown_answer(self) -> str:
return textwrap.dedent(
"""
| String | Integer | Float | Emoji |
| :----- | :------: | ----: | ------------------ |
| foo | 0 | 1.0 | :unicorn: |
| `bar` | 1 | -1.23 | :metal: |
| "baz" | -1 | 1e6 | :eye: :lips: :eye: |
| String | Integer | Float | Emoji |
| :----- | :------: | ----: | ------ |
| foo | 0 | 1.0 | 🦄 |
| `bar` | 1 | -1.23 | 🤘 |
| "baz" | -1 | 1e6 | 👁👄👁 |
"""
).strip()

Expand Down

0 comments on commit 5b1007c

Please sign in to comment.