{"id":4611,"date":"2025-03-24T11:06:51","date_gmt":"2025-03-24T18:06:51","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/"},"modified":"2025-03-24T11:06:51","modified_gmt":"2025-03-24T18:06:51","slug":"chat-with-your-git-history-rag-couchbase-shell","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/pt\/chat-with-your-git-history-rag-couchbase-shell\/","title":{"rendered":"Chat With Your Git History, Thanks to RAG and Couchbase Shell"},"content":{"rendered":"\n<p>Don&#8217;t you love reading other people&#8217;s commit messages? No? Well, I do and as I was reading a very insightful commit message, I realized all the untapped content living in various Git logs (assuming the dev you follow are writing useful messages, of course). So, wouldn&#8217;t it be great if you could ask questions to a repo? Let&#8217;s see how this can be achieved doing RAG with Couchbase Shell.<\/p>\n\n\n\n<p>TL;DR<\/p>\n\n\n<p>[crayon wrap=&#8221;true&#8221; lang=&#8221;sh&#8221; decode=&#8221;true&#8221;]# with bash, extract your commit history to json<br \/>\nsource git-log-json.sh &amp;&amp; git-log-json &gt; commitlog.json<\/p>\n<p># with cbsh, create scope, collection and collection Primary Index<br \/>\nscopes create gitlog; cb-env scope gitlog;collections create commits; cb-env collection commits; query &#8220;CREATE PRIMARY INDEX ON `default`:`cbsh`.`gitlog`.`commits`&#8221;<\/p>\n<p># Import the doc in selected collection<br \/>\nopen commitlog.json | wrap content | insert id { |it| echo $it.content.commitHash } | doc upsert<\/p>\n<p># Enrich the document with default model<br \/>\nquery &#8220;SELECT c.*, meta().id as id, c.subject || &#8216; &#8216; || c.body as text FROM `commits` as c&#8221; | wrap content| vector enrich-doc text | doc upsert<\/p>\n<p># Create a Vector Index<br \/>\nvector create-index &#8211;similarity-metric dot_product commits textVector 1536<\/p>\n<p># Run RAG<br \/>\nvector enrich-text &#8220;gemini&#8221; | vector search commits textVector &#8211;neighbors 20| select id |doc get| select content | reject -i content.textVector | par-each {|x| to json} | wrap content| ask &#8220;when and in which commit was gemini llm support added&#8221;[\/crayon]<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Couchbase Shell configuration<\/h2>\n\n\n\n<p>The initial step is to install and configure <em>cbsh<\/em>. I am going to use my Capella instance. To get the config you can go under the <strong>Connect<\/strong> tab of your Capella cluster and select <strong>Couchbase Shell<\/strong>. This is the config under <em>[[cluster]]<\/em>. To configure the model, take a look at what&#8217;s under<em> [[llm]]<\/em>. I have chosen OpenAI but there are others. You need to define the model used for the embedding (that&#8217;s what turns text into a vector) and one for the Chat. This one takes the question and some additional context to answer the question. And of course you will need an API key.<\/p>\n\n\n<p>[crayon wrap=&#8221;true&#8221; lang=&#8221;yaml&#8221; decode=&#8221;true&#8221;]version = 1<\/p>\n<p>[[llm]]<br \/>\nidentifier = &#8220;OpenAI&#8221;<br \/>\nprovider = &#8220;OpenAI&#8221;<br \/>\nembed_model = &#8220;text-embedding-3-small&#8221;<br \/>\nchat_model = &#8220;gpt-3.5-turbo&#8221;<br \/>\napi_key = &#8220;sk-proj-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&#8221;<\/p>\n<p>[[cluster]]<br \/>\nidentifier = &#8220;capella&#8221;<br \/>\nconnstr = &#8220;couchbases:\/\/cb.xxxxxxx.cloud.couchbase.com&#8221;<br \/>\nuser-display-name = &#8220;Laurent Doguin&#8221;<br \/>\nusername = &#8220;USER&#8221;<br \/>\npassword = &#8220;PASSWORD&#8221;<br \/>\ndefault-bucket = &#8220;cbsh&#8221;<br \/>\ndefault-scope = &#8220;gitlog&#8221;[\/crayon]<\/p>\n\n\n\n<p>You also need Git installed, then you should be all set.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Import Git commit log<\/h2>\n\n\n\n<p>The first step is to get all the commits of the repo in JSON. Being lazy and old, and by old I mean not used to asking an AI, I searched for this on Google, found a number of Gists, that linked to other Gists, and I finally settled <a href=\"https:\/\/gist.github.com\/april\/ee2e104b1435f3113e67663d8875bbef\" target=\"_blank\" rel=\"noopener\">on this one<\/a>.<\/p>\n\n\n\n<p>I downloaded it, sourced it, went into my local couchbase-shell git repo and called it.<\/p>\n\n\n<p>[crayon nums=&#8221;false&#8221; lang=&#8221;default&#8221; decode=&#8221;true&#8221;]source git-log-json.sh &amp;&amp; git-log-json &gt; commitlog.json[\/crayon]<\/p>\n\n\n\n<p>But, for the benefit of the reader wondering if I made the right decision, let&#8217;s ask the configured model. Cbsh has an <em>ask<\/em> command allowing you to to this:<\/p>\n\n\n<p>[crayon wrap=&#8221;true&#8221; lang=&#8221;sh&#8221; decode=&#8221;true&#8221;]\ud83d\udc64 Laurent Doguin \ud83c\udfe0 capella in \u2601\ufe0f cbsh.gitlog.commits<br \/>\n&gt; ask &#8220;get the full commits in json for a git repo&#8221;<\/p>\n<p>To get the full commits in a Git repository as JSON, you can use the following command:<\/p>\n<p>git log &#8211;pretty=format:'{%n &#8220;commit&#8221;: &#8220;%H&#8221;,%n &#8220;author&#8221;: &#8220;%an &lt;%ae&gt;&#8221;,%n &#8220;date&#8221;: &#8220;%ad&#8221;,%n &#8220;message&#8221;: &#8220;%f&#8221;%n},&#8217; &#8211;date=iso &#8211;reverse &#8211;all &gt; commits.json<br \/>\n[\/crayon]<\/p>\n\n\n\n<p>This command will output each commit in the repository as a JSON object with the commit hash, author name and email, commit date, and commit message. The<code> --all<\/code> flag ensures all branches are included. The <code>--reverse<\/code> flag lists the commits in reverse chronological order. Finally, the output is redirected to a <code>commits.json<\/code> file.<\/p>\n\n\n\n<p>Please make sure you run this command in the root directory of the Git repository you want to get the commits from.<\/p>\n\n\n\n<p>And as it turns out, it does not work out of the box (shocking I know). And it did not have all the info I needed, like the body part of the message. Of course we could spend time tuning this, but it&#8217;s very specific, with lots of edge cases.<\/p>\n\n\n\n<p>In any case I now have a list of commits in JSON format:<\/p>\n\n\n<p>[crayon lang=&#8221;js&#8221; decode=&#8221;true&#8221;][<br \/>\n  {<br \/>\n  &#8230;.<br \/>\n  },<br \/>\n  {<br \/>\n    &#8220;author&#8221;: {<br \/>\n      &#8220;name&#8221;: &#8220;Michael Nitschinger&#8221;,<br \/>\n      &#8220;email&#8221;: &#8220;michael@nitschinger.at&#8221;,<br \/>\n      &#8220;date&#8221;: &#8220;Thu, 20 Feb 2020 21:29:20 +0100&#8221;,<br \/>\n      &#8220;dateISO8601&#8221;: &#8220;2020-02-20T21:29:20+01:00&#8221;<br \/>\n    },<br \/>\n    &#8220;body&#8221;: &#8220;&#8221;,<br \/>\n    &#8220;commitHash&#8221;: &#8220;7a0d269fffd10045a63d40ca460deba944531890&#8221;,<br \/>\n    &#8220;commitHashAbbreviated&#8221;: &#8220;7a0d269&#8221;,<br \/>\n    &#8220;committer&#8221;: {<br \/>\n      &#8220;name&#8221;: &#8220;Michael Nitschinger&#8221;,<br \/>\n      &#8220;email&#8221;: &#8220;michael@nitschinger.at&#8221;,<br \/>\n      &#8220;date&#8221;: &#8220;Thu, 20 Feb 2020 21:29:20 +0100&#8221;,<br \/>\n      &#8220;dateISO8601&#8221;: &#8220;2020-02-20T21:29:20+01:00&#8221;<br \/>\n    },<br \/>\n    &#8220;encoding&#8221;: &#8220;&#8221;,<br \/>\n    &#8220;notes&#8221;: &#8220;&#8221;,<br \/>\n    &#8220;parent&#8221;: &#8220;&#8221;,<br \/>\n    &#8220;parentAbbreviated&#8221;: &#8220;&#8221;,<br \/>\n    &#8220;refs&#8221;: &#8220;&#8221;,<br \/>\n    &#8220;signature&#8221;: {<br \/>\n      &#8220;key&#8221;: &#8220;A6BCCB72D65B0D0F&#8221;,<br \/>\n      &#8220;signer&#8221;: &#8220;&#8221;,<br \/>\n      &#8220;verificationFlag&#8221;: &#8220;E&#8221;<br \/>\n    },<br \/>\n    &#8220;subject&#8221;: &#8220;Initial commit&#8221;,<br \/>\n    &#8220;subjectSanitized&#8221;: &#8220;Initial-commit&#8221;,<br \/>\n    &#8220;tree&#8221;: &#8220;3db442f3ef0438de58f72235e2658e5368a6752b&#8221;,<br \/>\n    &#8220;treeAbbreviated&#8221;: &#8220;3db442f&#8221;<br \/>\n}][\/crayon]<\/p>\n\n\n\n<p>So what can you do with a JSON array of JSON objects? You can import it through the Capella UI or you can import them with Couchbase Shell. I first create the <em>scope<\/em> and <em>collection<\/em> and select them with cb-env, then create the SQL++ Index.<\/p>\n\n\n<p>[crayon wrap=&#8221;true&#8221; lang=&#8221;sh&#8221; decode=&#8221;true&#8221;]scopes create gitlog; cb-env scope gitlog; collections create commits; cb-env collection commits; query &#8220;CREATE PRIMARY INDEX ON `default`:`cbsh`.`gitlog`.`commits`&#8221;[\/crayon]<\/p>\n\n\n\n<p>Since cbsh is based on Nushell, the resulting JSON file can be easily opened, turned into a dataframe, transformed in a Couchbase document and inserted like so:<\/p>\n\n\n<p>[crayon line-height=&#8221;12&#8243; nums=&#8221;false&#8221; lang=&#8221;default&#8221; decode=&#8221;true&#8221;]\ud83d\udc64 Laurent Doguin \ud83c\udfe0 capella in \u2601\ufe0f cbsh.gitlog.commits<br \/>\n&gt; open commitlog.json |wrap content | insert id { |it| echo $it.content.commitHash }| doc upsert<\/p>\n<p>\u256d\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256e<br \/>\n\u2502 # \u2502 processed \u2502 success \u2502 failed \u2502 failures \u2502 cluster \u2502<br \/>\n\u251c\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524<br \/>\n\u2502 0 \u2502 660 \u2502 660 \u2502 0       \u2502        \u2502 capella  \u2502         \u2502<br \/>\n\u2570\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256f<br \/>\n[\/crayon]<\/p>\n\n\n\n<p>Let&#8217;s get some documents just to see how it worked:<\/p>\n\n\n<p>[crayon line-height=&#8221;12&#8243; nums=&#8221;false&#8221; lang=&#8221;default&#8221; decode=&#8221;true&#8221;]\ud83d\udc64 Laurent Doguin \ud83c\udfe0 capella in \u2601\ufe0f cbsh.gitlog.commits<br \/>\n&gt; query &#8220;SELECT subject, body FROM `commits` LIMIT 1&#8221;<br \/>\n\u256d\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256e<br \/>\n\u2502 # \u2502 subject      \u2502 body \u2502 cluster \u2502<br \/>\n\u251c\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524<br \/>\n\u2502 0 \u2502 Bump Nushell \u2502      \u2502 capella \u2502<br \/>\n\u2570\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256f<\/p>\n<p>[\/crayon]<\/p>\n\n\n\n<p>So this is content we could use for RAG. Time to enrich these docs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Enrich document with an AI model<\/h2>\n\n\n\n<p>To enrich the doc you need to have a model configured. Here I am using OpenAI and the <em>enrich-doc<\/em> cbsh command:<\/p>\n\n\n<p>[crayon line-height=&#8221;12&#8243; nums=&#8221;false&#8221; lang=&#8221;default&#8221; decode=&#8221;true&#8221;]\ud83d\udc64 Laurent Doguin \ud83c\udfe0 capella in \u2601\ufe0f cbsh.gitlog.commits<br \/>\n&gt; query &#8220;SELECT c.*, meta().id as id, c.subject || &#8216; &#8216; || c.body as text FROM `commits` as c&#8221; | wrap content| vector enrich-doc text | doc upsert<br \/>\nEmbedding batch 1\/1<br \/>\n\u256d\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256e<br \/>\n\u2502 # \u2502 processed \u2502 success \u2502 failed \u2502 failures \u2502 cluster \u2502<br \/>\n\u251c\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524<br \/>\n\u2502 0 \u2502 61        \u2502 61      \u2502 0      \u2502          \u2502 capella \u2502<br \/>\n\u2570\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256f[\/crayon]<\/p>\n\n\n\n<p>The SELECT clause will return a JSON object with the content of the doc, and additional fields <em>id<\/em> and <em>text<\/em>. Text is the subject and body appended into one string. The object is wrapped in a content object and given to the vector <em>enrich-doc<\/em> command, with text as a parameter, as it is the field that will be transformed in a vector. There should now be a <em>textVector<\/em> field in each doc.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Vector Search<\/h2>\n\n\n\n<p>In order to search through these vectors, we need to create a Vector Search index. It&#8217;s doable through the API or UI for something customizable. Here I am happy with default choices so I use cbsh instead:<\/p>\n\n\n<p>[crayon wrap=&#8221;true&#8221; lang=&#8221;default&#8221; decode=&#8221;true&#8221;]\ud83d\udc64 Laurent Doguin \ud83c\udfe0 capella in \u2601\ufe0f cbsh.gitlog.commits<br \/>\n&gt; vector create-index &#8211;similarity-metric dot_product commits textVector 1536[\/crayon]<\/p>\n\n\n\n<p>The index created will use <em>dot_product<\/em> as a similarity algorithm, vector dimensionality will be 1536, the name of the index is <em>commit<\/em> and the indexed field is <em>textVector<\/em>. The bucket, scope and collection are the one selected through <em>cb-env<\/em>.<\/p>\n\n\n\n<p>To test vector search, the search query has to be turned in a vector, than piped to the search:<\/p>\n\n\n\n<p><p>[crayon wrap=&#8221;true&#8221; lang=&#8221;yaml&#8221; decode=&#8221;true&#8221;]version = 1<\/p>\n<p>[[llm]]<br \/>\nidentifier = &#8220;OpenAI&#8221;<br \/>\nprovider = &#8220;OpenAI&#8221;<br \/>\nembed_model = &#8220;text-embedding-3-small&#8221;<br \/>\nchat_model = &#8220;gpt-3.5-turbo&#8221;<br \/>\napi_key = &#8220;sk-proj-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&#8221;<\/p>\n<p>[[cluster]]<br \/>\nidentifier = &#8220;capella&#8221;<br \/>\nconnstr = &#8220;couchbases:\/\/cb.xxxxxxx.cloud.couchbase.com&#8221;<br \/>\nuser-display-name = &#8220;Laurent Doguin&#8221;<br \/>\nusername = &#8220;USER&#8221;<br \/>\npassword = &#8220;PASSWORD&#8221;<br \/>\ndefault-bucket = &#8220;cbsh&#8221;<br \/>\ndefault-scope = &#8220;gitlog&#8221;[\/crayon]<\/p>\n0<\/p>\n\n\n\n<p>It returns 3 rows by default. Let&#8217;s extend it to see the content of the document. I am adding <code>reject -i textVector<\/code> to remove the vector field, because no one needs a 1536 lines field in their terminal output:<\/p>\n\n\n\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-16978\" src=\"https:\/\/www.couchbase.com\/wp-content\/uploads\/sites\/5\/2026\/05\/image1-1-1024x1019-1.png\" alt=\"\" width=\"900\" height=\"896\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ask your Git Repository<\/h2>\n\n\n\n<p>From here you have all the commits of a Git repository stored in Couchbase, enriched with an AI model, and all indexed and searchable. The last thing to do is call the model to run a query with RAG. It starts by a turning a question into a vector, pipe it to a vector search, get the full document from the return IDs, select the content object without the vector field, turn each object in a JSON doc (this way we can send the content and its structured metadata), wrap the <em>jsonText<\/em> in a table and finally pipe it to the <em>ask<\/em> command:<\/p>\n\n\n\n<p><p>[crayon wrap=&#8221;true&#8221; lang=&#8221;yaml&#8221; decode=&#8221;true&#8221;]version = 1<\/p>\n<p>[[llm]]<br \/>\nidentifier = &#8220;OpenAI&#8221;<br \/>\nprovider = &#8220;OpenAI&#8221;<br \/>\nembed_model = &#8220;text-embedding-3-small&#8221;<br \/>\nchat_model = &#8220;gpt-3.5-turbo&#8221;<br \/>\napi_key = &#8220;sk-proj-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&#8221;<\/p>\n<p>[[cluster]]<br \/>\nidentifier = &#8220;capella&#8221;<br \/>\nconnstr = &#8220;couchbases:\/\/cb.xxxxxxx.cloud.couchbase.com&#8221;<br \/>\nuser-display-name = &#8220;Laurent Doguin&#8221;<br \/>\nusername = &#8220;USER&#8221;<br \/>\npassword = &#8220;PASSWORD&#8221;<br \/>\ndefault-bucket = &#8220;cbsh&#8221;<br \/>\ndefault-scope = &#8220;gitlog&#8221;[\/crayon]<\/p>\n1<\/p>\n\n\n\n<p>Asking the LLM when Gemini support was introduced. We get a date and a commit hash. It&#8217;s then easy to verify using <code>git show<\/code>. There is a bit of repetition here so you can declare a variable for your question and reuse it:<\/p>\n\n\n\n<p><p>[crayon wrap=&#8221;true&#8221; lang=&#8221;yaml&#8221; decode=&#8221;true&#8221;]version = 1<\/p>\n<p>[[llm]]<br \/>\nidentifier = &#8220;OpenAI&#8221;<br \/>\nprovider = &#8220;OpenAI&#8221;<br \/>\nembed_model = &#8220;text-embedding-3-small&#8221;<br \/>\nchat_model = &#8220;gpt-3.5-turbo&#8221;<br \/>\napi_key = &#8220;sk-proj-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&#8221;<\/p>\n<p>[[cluster]]<br \/>\nidentifier = &#8220;capella&#8221;<br \/>\nconnstr = &#8220;couchbases:\/\/cb.xxxxxxx.cloud.couchbase.com&#8221;<br \/>\nuser-display-name = &#8220;Laurent Doguin&#8221;<br \/>\nusername = &#8220;USER&#8221;<br \/>\npassword = &#8220;PASSWORD&#8221;<br \/>\ndefault-bucket = &#8220;cbsh&#8221;<br \/>\ndefault-scope = &#8220;gitlog&#8221;[\/crayon]<\/p>\n2<\/p>\n\n\n\n<p>And now we all know why the client crate had to be rewritten. It may not answer your own questions, but now you know how to get answers from any repo!<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Get started with <a href=\"https:\/\/cloud.couchbase.com\" target=\"_blank\" rel=\"noopener\">Capella for free<\/a><\/li>\n\n\n<li>Read our <a href=\"https:\/\/www.couchbase.com\/blog\/llm-embeddings\/\" target=\"_blank\" rel=\"noopener\">Guide for LLM Embeddings<\/a><\/li>\n\n\n<li>Read more of <a href=\"https:\/\/www.couchbase.com\/blog\/author\/laurent-doguin\/\" target=\"_blank\" rel=\"noopener\">my developer blogs<\/a> on vector search and more<\/li>\n\n\n<li>Try <a href=\"https:\/\/couchbase.sh\" target=\"_blank\" rel=\"noopener\">Couchbase Shell<\/a> today<\/li>\n\n<\/ul>\n\n\n\n<p><a href=\"https:\/\/couchbase.sh\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-16979\" src=\"https:\/\/www.couchbase.com\/wp-content\/uploads\/sites\/5\/2026\/05\/blog-cbsh-rag-1024x1019-1.png\" alt=\"\" width=\"646\" height=\"643\"><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Don&#8217;t you love reading other people&#8217;s commit messages? No? Well, I do and as I was reading a very insightful commit message, I realized all the untapped content living in various Git logs (assuming the dev you follow are writing useful messages, of course). So, wouldn&#8217;t it be great if you could ask questions to [&hellip;]<\/p>\n","protected":false},"author":49,"featured_media":4610,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[598,136,301,54,727,64,715],"tags":[888,889,890,907,797],"ppma_author":[110],"class_list":["post-4611","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-artificial-intelligence-ai","category-best-practices-and-tutorials","category-cloud","category-couchbase-server","category-generative-ai-genai","category-tools-sdks","category-vector-search","tag-cbsh","tag-cbshell","tag-couchbase-shell","tag-nushell","tag-rag-retrieval-augmented-generation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.6 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Chat With Your Git History, Thanks to RAG and Couchbase Shell - The Couchbase Blog<\/title>\n<meta name=\"description\" content=\"Turn your Git history into a chat-ready knowledge base using RAG and Couchbase Shell.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.couchbase.com\/blog\/pt\/chat-with-your-git-history-rag-couchbase-shell\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chat With Your Git History, Thanks to RAG and Couchbase Shell\" \/>\n<meta property=\"og:description\" content=\"Turn your Git history into a chat-ready knowledge base using RAG and Couchbase Shell.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/pt\/chat-with-your-git-history-rag-couchbase-shell\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-24T18:06:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/CBShell_V2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"1256\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Laurent Doguin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ldoguin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Laurent Doguin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/\"},\"author\":{\"name\":\"Laurent Doguin\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/c0aa9b8f1ed51b7a9e2f7cb755994a5e\"},\"headline\":\"Chat With Your Git History, Thanks to RAG and Couchbase Shell\",\"datePublished\":\"2025-03-24T18:06:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/\"},\"wordCount\":1655,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/CBShell_V2.jpg\",\"keywords\":[\"cbsh\",\"cbshell\",\"couchbase shell\",\"nushell\",\"RAG retrieval-augmented generation\"],\"articleSection\":[\"Artificial Intelligence (AI)\",\"Best Practices and Tutorials\",\"Couchbase Capella\",\"Couchbase Server\",\"Generative AI (GenAI)\",\"Tools &amp; SDKs\",\"Vector Search\"],\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/\",\"name\":\"Chat With Your Git History, Thanks to RAG and Couchbase Shell - The Couchbase Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/CBShell_V2.jpg\",\"datePublished\":\"2025-03-24T18:06:51+00:00\",\"description\":\"Turn your Git history into a chat-ready knowledge base using RAG and Couchbase Shell.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/CBShell_V2.jpg\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/05\\\/CBShell_V2.jpg\",\"width\":2400,\"height\":1256},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/chat-with-your-git-history-rag-couchbase-shell\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chat With Your Git History, Thanks to RAG and Couchbase Shell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"name\":\"The Couchbase Blog\",\"description\":\"Couchbase, the NoSQL Database\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\",\"name\":\"The Couchbase Blog\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/06\\\/logo.svg\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/5\\\/2026\\\/06\\\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"The Couchbase Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/c0aa9b8f1ed51b7a9e2f7cb755994a5e\",\"name\":\"Laurent Doguin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b8c466908092b46634af916b6921f30187a051e4367ded7ac9b1a3f2c5692fd2?s=96&d=mm&r=g12929ce99397769f362b7a90d6b85071\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b8c466908092b46634af916b6921f30187a051e4367ded7ac9b1a3f2c5692fd2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b8c466908092b46634af916b6921f30187a051e4367ded7ac9b1a3f2c5692fd2?s=96&d=mm&r=g\",\"caption\":\"Laurent Doguin\"},\"description\":\"Laurent is a nerdy metal head who lives in Paris. He mostly writes code in Java and structured text in AsciiDoc, and often talks about data, reactive programming and other buzzwordy stuff. He is also a former Developer Advocate for Clever Cloud and Nuxeo where he devoted his time and expertise to helping those communities grow bigger and stronger. He now runs Developer Relations at Couchbase.\",\"sameAs\":[\"https:\\\/\\\/x.com\\\/ldoguin\"],\"honorificPrefix\":\"Mr\",\"birthDate\":\"1985-06-07\",\"gender\":\"male\",\"award\":[\"Devoxx Champion\",\"Couchbase Legend\"],\"knowsAbout\":[\"Java\"],\"knowsLanguage\":[\"English\",\"French\"],\"jobTitle\":\"Director Developer Relation & Strategy\",\"worksFor\":\"Couchbase\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/pt\\\/author\\\/laurent-doguin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Chat With Your Git History, Thanks to RAG and Couchbase Shell - The Couchbase Blog","description":"Turn your Git history into a chat-ready knowledge base using RAG and Couchbase Shell.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.couchbase.com\/blog\/pt\/chat-with-your-git-history-rag-couchbase-shell\/","og_locale":"pt_BR","og_type":"article","og_title":"Chat With Your Git History, Thanks to RAG and Couchbase Shell","og_description":"Turn your Git history into a chat-ready knowledge base using RAG and Couchbase Shell.","og_url":"https:\/\/www.couchbase.com\/blog\/pt\/chat-with-your-git-history-rag-couchbase-shell\/","og_site_name":"The Couchbase Blog","article_published_time":"2025-03-24T18:06:51+00:00","og_image":[{"width":2400,"height":1256,"url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/CBShell_V2.jpg","type":"image\/jpeg"}],"author":"Laurent Doguin","twitter_card":"summary_large_image","twitter_creator":"@ldoguin","twitter_misc":{"Written by":"Laurent Doguin","Est. reading time":"5 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/"},"author":{"name":"Laurent Doguin","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/c0aa9b8f1ed51b7a9e2f7cb755994a5e"},"headline":"Chat With Your Git History, Thanks to RAG and Couchbase Shell","datePublished":"2025-03-24T18:06:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/"},"wordCount":1655,"commentCount":2,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/CBShell_V2.jpg","keywords":["cbsh","cbshell","couchbase shell","nushell","RAG retrieval-augmented generation"],"articleSection":["Artificial Intelligence (AI)","Best Practices and Tutorials","Couchbase Capella","Couchbase Server","Generative AI (GenAI)","Tools &amp; SDKs","Vector Search"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/","url":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/","name":"Chat With Your Git History, Thanks to RAG and Couchbase Shell - The Couchbase Blog","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/CBShell_V2.jpg","datePublished":"2025-03-24T18:06:51+00:00","description":"Turn your Git history into a chat-ready knowledge base using RAG and Couchbase Shell.","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#primaryimage","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/CBShell_V2.jpg","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/05\/CBShell_V2.jpg","width":2400,"height":1256},{"@type":"BreadcrumbList","@id":"https:\/\/www.couchbase.com\/blog\/chat-with-your-git-history-rag-couchbase-shell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Chat With Your Git History, Thanks to RAG and Couchbase Shell"}]},{"@type":"WebSite","@id":"https:\/\/www.couchbase.com\/blog\/#website","url":"https:\/\/www.couchbase.com\/blog\/","name":"The Couchbase Blog","description":"Couchbase, the NoSQL Database","publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.couchbase.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/www.couchbase.com\/blog\/#organization","name":"The Couchbase Blog","url":"https:\/\/www.couchbase.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/06\/logo.svg","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/5\/2026\/06\/logo.svg","width":"1024","height":"1024","caption":"The Couchbase Blog"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/c0aa9b8f1ed51b7a9e2f7cb755994a5e","name":"Laurent Doguin","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/secure.gravatar.com\/avatar\/b8c466908092b46634af916b6921f30187a051e4367ded7ac9b1a3f2c5692fd2?s=96&d=mm&r=g12929ce99397769f362b7a90d6b85071","url":"https:\/\/secure.gravatar.com\/avatar\/b8c466908092b46634af916b6921f30187a051e4367ded7ac9b1a3f2c5692fd2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b8c466908092b46634af916b6921f30187a051e4367ded7ac9b1a3f2c5692fd2?s=96&d=mm&r=g","caption":"Laurent Doguin"},"description":"Laurent is a nerdy metal head who lives in Paris. He mostly writes code in Java and structured text in AsciiDoc, and often talks about data, reactive programming and other buzzwordy stuff. He is also a former Developer Advocate for Clever Cloud and Nuxeo where he devoted his time and expertise to helping those communities grow bigger and stronger. He now runs Developer Relations at Couchbase.","sameAs":["https:\/\/x.com\/ldoguin"],"honorificPrefix":"Mr","birthDate":"1985-06-07","gender":"male","award":["Devoxx Champion","Couchbase Legend"],"knowsAbout":["Java"],"knowsLanguage":["English","French"],"jobTitle":"Director Developer Relation & Strategy","worksFor":"Couchbase","url":"https:\/\/www.couchbase.com\/blog\/pt\/author\/laurent-doguin\/"}]}},"acf":[],"authors":[{"term_id":110,"user_id":49,"is_guest":0,"slug":"laurent-doguin","display_name":"Laurent Doguin","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/b8c466908092b46634af916b6921f30187a051e4367ded7ac9b1a3f2c5692fd2?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/posts\/4611","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/users\/49"}],"replies":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/comments?post=4611"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/posts\/4611\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/media\/4610"}],"wp:attachment":[{"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/media?parent=4611"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/categories?post=4611"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/tags?post=4611"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/pt\/wp-json\/wp\/v2\/ppma_author?post=4611"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}