Skip to content

Commit

Permalink
add google tags and banner to html rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
stoerr committed Jan 28, 2024
1 parent 42b42ab commit a263d93
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
1 change: 1 addition & 0 deletions _includes/head-custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@

gtag('config', 'G-SL01MYCNDC');
</script>
<meta property="og:image" content="https://codevelopergptengine.stoerr.net/banner.png"/>
10 changes: 5 additions & 5 deletions src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

# Co-Developer GPT Engine

## Introduction

<div style="float: right; margin-left: 1em; margin-bottom: 1em;">
<img src="images/dalle/joinedkeyboard1.png" alt="Joined Keyboard Image" style="width: 15em; height: auto;" />
<div style="text-align: center; margin-bottom: 2em; margin-top: 2em;">
<img src="banner-l.png" alt="Co-Developer GPT engine banner" style="max-width: 100%;height: auto;max-height: 25em;"/>
</div>

## Introduction

Would you like to have ChatGPT list, search, read your local files, discuss them with you, and modify them
and have it execute (e.g. build and test)
actions locally to support you in your development processes? Then this might be for you. The Co-Developer GPT
Expand All @@ -22,7 +22,7 @@ started in.
In contrast to other approaches like [AutoGPT](https://github.com/Significant-Gravitas/AutoGPT) this is not meant to
autonomously execute extensive changes (which would likely require a lot of prompt engineering), but to enable the
developer to flexibly use the AI within a ChatGPT chat session for various tasks both to analyze code or documentation
and to make some changes. A ChatGPT chat does, however, permit to trigger several actions in one message, so it's
and to make some changes. A ChatGPT chat does, however, permit to trigger several actions in one message, so it's
also possible to e.g. tell it to run the build, fix errors and repeat until it succeeds.

The project is quite stable and useable. In fact I use it regularily in my own development - both on itself and on
Expand Down
12 changes: 12 additions & 0 deletions src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@
<!-- https://maven.apache.org/doxia/doxia-sitetools/doxia-site-model/site.html -->

<body>
<head>
&#x3C;meta property=&#x22;og:image&#x22; content=&#x22;https://codevelopergptengine.stoerr.net/banner.png&#x22;/&#x3E;
&#x3C;script async src=&#x22;https://www.googletagmanager.com/gtag/js?id=G-SL01MYCNDC&#x22;&#x3E;&#x3C;/script&#x3E;
&#x3C;script&#x3E;
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag(&#x27;js&#x27;, new Date());

gtag(&#x27;config&#x27;, &#x27;G-SL01MYCNDC&#x27;);
&#x3C;/script&#x3E;
</head>

<links>
<item name="Hans-Peter Störr" href="http://www.stoerr.net/"/>
<item name="On Github" href="https://github.com/stoerr/CoDeveloperGPTengine"/>
Expand Down

0 comments on commit a263d93

Please sign in to comment.