Commit graph

4056 commits

Author SHA1 Message Date
Paul Gauthier
bf09bd348f 0125 with ex_as_sys 2024-05-08 15:14:37 -07:00
Paul Gauthier
4c6fd48b27 updated gpt-4-1106-preview leaderboards 2024-05-08 15:02:16 -07:00
Paul Gauthier
eaa2514981 copy 2024-05-08 14:18:25 -07:00
Paul Gauthier
87664dc254 added gpt-3.5-turbo results to leaderboard 2024-05-08 14:15:16 -07:00
Paul Gauthier
7a98953fae split repo map and added files into 2 user messages 2024-05-08 14:13:50 -07:00
Paul Gauthier
6a01b66b2c I have *added these files to the chat* 2024-05-08 14:05:58 -07:00
Paul Gauthier
1d55f749fb cleanup 2024-05-08 13:56:40 -07:00
Paul Gauthier
738c3b8e5e fall back to global repo map if files in chat are disjoint from rest of repo 2024-05-08 13:56:06 -07:00
Paul Gauthier
a9d9c6881d added gpt-3.5-turbo as explicit model 2024-05-08 13:52:20 -07:00
Paul Gauthier
48fd67485c add a user message during --show-prompts 2024-05-08 13:49:38 -07:00
Paul Gauthier
5bd875ffbf cleanup stray << HEAD 2024-05-08 13:45:18 -07:00
Paul Gauthier
9e7f2ec790 cleanup 2024-05-08 13:41:24 -07:00
Paul Gauthier
f256b43043 wip 2024-05-08 13:35:34 -07:00
Paul Gauthier
fb8ed21b13 refactored lazy_prompt in all coders 2024-05-08 13:07:35 -07:00
Paul Gauthier
3fcb5d9781 set version to 0.33.1-dev 2024-05-08 09:38:50 -07:00
Paul Gauthier
b0356ef507 version bump to 0.33.0 2024-05-08 09:38:14 -07:00
Paul Gauthier
ecee575236 Updated HISTORY 2024-05-08 09:37:35 -07:00
Paul Gauthier
b0a512770b updated docs to use deepseek/ prefix 2024-05-08 08:40:28 -07:00
Paul Gauthier
44024c001d added aider.litellm 2024-05-08 08:09:23 -07:00
Paul Gauthier
9ff6770a04 refactored litellm to avoid duplicating workarounds 2024-05-08 08:05:15 -07:00
Paul Gauthier
b249177119 added settings for deepseek/deepseek-chat 2024-05-08 07:13:13 -07:00
Paul Gauthier
bec9d49d64 bumped deps 2024-05-08 07:07:55 -07:00
Paul Gauthier
9adbb0c722 layout 2024-05-08 07:01:58 -07:00
Paul Gauthier
ecf6e4df3a set version to 0.32.1-dev 2024-05-07 16:36:51 -07:00
Paul Gauthier
6c17d94101 version bump to 0.32.0 2024-05-07 16:36:15 -07:00
Paul Gauthier
6fc6d5056d copy 2024-05-07 16:28:05 -07:00
Paul Gauthier
85864e01bc added WizardLM-2 8x22B to leaderboard 2024-05-07 14:37:41 -07:00
Paul Gauthier
bbe8639160 renamed qwen 2024-05-07 13:57:45 -07:00
Paul Gauthier
8e272bf7c6 Updated HISTORY 2024-05-07 13:55:22 -07:00
Paul Gauthier
c29d4860ab Added qwen1.5-110b-chat to leaderboard 2024-05-07 13:55:12 -07:00
Paul Gauthier
70b1c0c20c load .env in benchmark.py 2024-05-07 13:32:19 -07:00
Paul Gauthier
dc7e61f3c9 added deepseek-chat v2 (diff) to leaderboard 2024-05-07 09:38:46 -07:00
Paul Gauthier
e9da4016c8 deepseek-chat with sys examples and sys reminder 2024-05-07 08:48:49 -07:00
Paul Gauthier
086ccd64ee updated history 2024-05-07 08:48:28 -07:00
Paul Gauthier
04b224962e send the reminder if unknown context window size 2024-05-07 08:42:33 -07:00
Paul Gauthier
ca0faf7cc7 Merge remote-tracking branch 'origin/main' 2024-05-07 06:27:20 -07:00
Paul Gauthier
ecca737803 added deepseek-chat v2 2024-05-07 06:26:39 -07:00
Paul Gauthier
b1cae73a85 cleaned up csv output 2024-05-07 05:59:31 -07:00
paul-gauthier
6fb4983d88
Update edit_leaderboard.yml 2024-05-06 20:42:23 -07:00
paul-gauthier
18761b70be
Update index.md 2024-05-06 17:16:29 -07:00
paul-gauthier
6bc18b9591
Update index.md 2024-05-06 17:15:26 -07:00
Paul Gauthier
db994fb203 aider: Updated the reference to highlight_image in default.html to use page.highlight_image.
# Aider chat conversation:

USER: in default.html, how should i reference the `highlight_image` declared in the markdown front matter?

ASSISTANT: To reference the `highlight_image` front matter variable in `default.html`, you can use the Liquid syntax `{{ page.highlight_image }}`.

Here's the change in a *SEARCH/REPLACE block*:

_layouts/default.html
<source>html
<<<<<<< SEARCH
    {% if highlight_image %}
    <meta property="og:image" content="{{ site.url }}{{ highlight_image }}">
=======
    {% if page.highlight_image %}
    <meta property="og:image" content="{{ site.url }}{{ page.highlight_image }}">
>>>>>>> REPLACE
</source>

This checks if `page.highlight_image` is defined in the front matter of the current page. If so, it sets the `og:image` meta tag to the full URL of the highlight image by prepending `site.url` to `page.highlight_image`.
2024-05-06 16:26:56 -07:00
Paul Gauthier
0c839b835c layout 2024-05-06 16:24:39 -07:00
Paul Gauthier
64938eafee Use highlight as og:image if present 2024-05-06 16:21:22 -07:00
Paul Gauthier
eab864c518 copy 2024-05-06 14:38:02 -07:00
Paul Gauthier
c67a94ee99 copy 2024-05-06 14:37:03 -07:00
Paul Gauthier
a58bc98f51 copy 2024-05-06 12:42:14 -07:00
Paul Gauthier
92f53d4d7b copy 2024-05-06 12:41:02 -07:00
Paul Gauthier
673be4647c copy 2024-05-06 12:23:06 -07:00
Paul Gauthier
c1e2829d21 copy 2024-05-06 12:21:14 -07:00