Skip to content

Commit

Permalink
Merge branch 'main' into zh-cn
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed Sep 2, 2024
2 parents 78e55bd + 4e2822f commit a5526ef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/python/chat/templates/groundings.j2
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ Here are some groundings information about the runtime environment:

Accessing python objects inside js scope is a `PyProxy`. Its `toJs()` method should be called in JavaScript. See [docs](https://pyodide.org/en/stable/usage/type-conversions.html#type-translations-pyproxy-to-js).

python language version: 3.11
python language version: {{
from sys import version_info
".".join(map(str, version_info[:3]))
}}

---

Expand Down

0 comments on commit a5526ef

Please sign in to comment.