Update custom_llm.py
Browse files- custom_llm.py +1 -1
custom_llm.py
CHANGED
@@ -139,9 +139,9 @@ def format_df(df):
|
|
139 |
for _,row in df.iterrows():
|
140 |
for x in row.values:
|
141 |
out += str(x) + "|"
|
142 |
-
out += "\n"
|
143 |
|
144 |
out = out[:-1]
|
|
|
145 |
|
146 |
return out
|
147 |
|
|
|
139 |
for _,row in df.iterrows():
|
140 |
for x in row.values:
|
141 |
out += str(x) + "|"
|
|
|
142 |
|
143 |
out = out[:-1]
|
144 |
+
out += "\n"
|
145 |
|
146 |
return out
|
147 |
|