mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-24 15:43:54 +00:00
fix: create schema description from URIs and str w/out rdflib warnings (#8025)
- Description: fix to avoid rdflib warnings when concatenating URIs and strings to create the text snippet for the knowledge graph's schema. @marioscrock pointed this out in a comment related to #7165 - Issue: None, but the problem was mentioned as a comment in #7165 - Dependencies: None - Tag maintainer: Related to memory -> @hwchase17, maybe @baskaryan as it is a fix
This commit is contained in:
parent
7239d57a53
commit
9226fda58b
@ -225,7 +225,7 @@ class RdfGraph:
|
|||||||
def _res_to_str(self, res: rdflib.query.ResultRow, var: str) -> str:
|
def _res_to_str(self, res: rdflib.query.ResultRow, var: str) -> str:
|
||||||
return (
|
return (
|
||||||
"<"
|
"<"
|
||||||
+ res[var]
|
+ str(res[var])
|
||||||
+ "> ("
|
+ "> ("
|
||||||
+ self._get_local_name(res[var])
|
+ self._get_local_name(res[var])
|
||||||
+ ", "
|
+ ", "
|
||||||
|
Loading…
Reference in New Issue
Block a user