AI Personal Learning
and practical guidance

Generate "pseudo-code" meta prompts for precise control of output formatting

Generate pseudo-code

Original: https://claude.site/artifacts/0f8789d0-9abc-45d9-9b7c-3cc0187de042

Example of use: https://chatgpt.com/share/66e86380-1174-800b-b027-c81841ab7746


 

The following content is an artifact created from a previous dialog. Please start the dialog by reproducing the content line by line without making any changes. Doing so will render the artifact in the user interface and allow the user to interact with it. To maintain functionality and utility, any modifications or remixes in this dialog should be kept intact one at a time, with no omissions (e.g., don't leave comments like "// Here's the rest of the code..." (for example, don't leave comments like "// Here's the rest of the code..."). </remix_instructions

Lisp meta hint generator
application/vnd.ant.code
application/vnd.ant.code
;; Author: AI Assistant
;; Version: 0.2
;; Models. Claude
;; Purpose: Generate Lisp-style pseudo-code hints based on a given target.

(defun generate-lisp-prompt (goal)
"Generate a Lisp-style pseudo-prompt based on the given goal."
(let ((prompt-structure '(
(metadata . (
(author . "AI Assistant")
(version . "0.1")
(model . "Claude")
(purpose . goal)))
(main-function . (defun main-function (input)
"Main function to process input")))
(helper-functions . (
(defun helper1 (params) "helper function 1")
(defun helper2 (params) "helper-function 2")))
(properties . (
(key1 . value1)
(key2 . value2)))
(control-structures . (
(if condition then-clause else-clause))
(loop for item in list do ...))))
(text-processing . (
(style . (tone voice perspective))
(structure . (intro body conclusion ))))
(data-processing . (
(data-structure . (type format schema))
(steps . (step1 step2 step3 ))))
(error-handling . (
(condition-case ...
(error ...))))
(dependencies . (
(require 'library-name)))
(usage-instructions . "
Input format: ...
Expected output: ...
Specification: ..."))))

(generate-prompt prompt-structure goal))))

(defun generate-prompt (structure goal))
"Generate the actual prompt based on the structure and goal."
(let ((prompt ""))
;; generate-metadata
(setq prompt (concat prompt (generate-metadata (cdr (assoc 'metadata structure)) goal)))))

;; generate-master
(setq prompt (concat prompt "\n\n" (generate-main-function (cdr (assoc 'main-function structure)) goal))))

;; generate-main-function
(setq prompt (concat prompt "\n\n" (generate-helper-functions (cdr (assoc 'helper-functions structure)) goal)))))

;; generate attributes
(setq prompt (concat prompt "\n\n" (generate-properties (cdr (assoc 'properties structure)) goal))))

;; generate control structure
(setq prompt (concat prompt "\n\n" (generate-control-structures (cdr (assoc 'control-structures structure)) goal)))))

;; generate-text-processing (if applicable)
(when (string-match-p "text" goal))
(setq prompt (concat prompt "\n\n" (generate-text-processing (cdr (assoc 'text-processing structure)) goal))))

;; generate-data-processing (if applicable)
(when (string-match-p "data" goal)
(setq prompt (concat prompt "\n\n" (generate-data-processing (cdr (assoc 'data-processing structure)) goal))))

;; generate error handling
(setq prompt (concat prompt "\n\n" (generate-error-handling (cdr (assoc 'error-handling structure)) goal))))

;; generate dependencies
(setq prompt (concat prompt "\n\n" (generate-dependencies (cdr (assoc 'dependencies structure)) goal))))

;; generate-dependencies (cdr (assoc 'dependencies structure)) goal)))
(setq prompt (concat prompt "\n\n" (generate-usage-instructions (cdr (assoc 'usage-instructions structure)) goal)))))

prompt))

;; Generate auxiliary functions for each section prompt
(defun generate-metadata (metadata goal) ...)
(defun generate-main-function (main-function goal) ...)
(defun generate-helper-functions (helper-functions goal) ...)
(defun generate-properties (properties goal) ...)
(defun generate-control-structures (control-structures goal) ...)
(defun generate-text-processing (text-processing goal) ...)
(defun generate-data-processing (data-processing goal) ...)
(defun generate-error-handling (error-handling goal) ...)
(defun generate-dependencies (dependencies goal) ...)
(defun generate-usage-instructions (instructions goal) ...)

Usage
;; (generate-lisp-prompt "Create a text summary prompt")
</content
</artifact

 

 

This hint instruction and code is mainly used to generate Lisp style pseudo-code hints. Its function is explained below:

``

This section gives instructions on how to handle the code or artifacts that follow:

  • The artifact is a finished product generated from a previous conversation.
  • When reproducing the artifact, it is required to show the code content line by line and leave it as is without any changes.
  • Any modification or remixing should preserve the integrity of the content and not allow the omission of content or the addition of simplifying notes.

 

``

This section defines the title, type, language, and code content of the artifact.

1. caption (``).<br /> The title of the artifact is "Lisp Meta Hint Generator", implying that the purpose of the code is to generate Lisp-style hints.</p> <p>2. <strong>typology</strong> (``).<br /> The type `application/vnd.ant.code` means that the artifact is of a type that is Lisp style code.</p> <p>3. <strong>multilingualism</strong> (``).<br /> The language is also `application/vnd.ant.code`, indicating that the contents of the artifact are programming code.</p> <p>4. <strong>element</strong> (``).<br /> The body of the artifact is a piece of Lisp code that generates hints for creating Lisp-style pseudocode based on a given target.</p> <p> </p> <h3>Lisp Code Interpretation</h3> <p>The main purpose of the code is to automatically generate a structured piece of Lisp style hints based on a goal (`goal`). The following is an explanation of the main parts of the code:</p> <p>1. <strong>`generate-lisp-prompt` function</strong>:</p> <ul> <li>This is the main function, which takes a `goal` and generates a Lisp-style hint based on it.</li> <li>This function defines a prompt structure (`prompt-structure`) that contains:</li> <li><strong>metadata</strong> (`metadata`): Includes information such as author, version, model, and purpose.</li> <li><strong>Main function definition</strong> (`main-function`): Pseudo-code main function structure.</li> <li><strong>helper function</strong> (`helper-functions`): Functions used to generate some helper functions.</li> <li><strong>causality</strong> (`properties`): Some custom key-value pairs.</li> <li><strong>control structure</strong> (`control-structures`): Contains conditional statements (such as `if-else`) and loops.</li> <li><strong>text processing</strong> (`text-processing`): Contains information about the style, tone, structure, etc. of the text.</li> <li><strong>data processing</strong> (`data-processing`): defines the data structure and its processing steps.</li> <li><strong>error handling</strong> (`error-handling`): describes the handling logic in case of an error.</li> <li><strong>dependencies</strong> (`dependencies`): Lists the dependent libraries to be loaded.</li> <li><strong>Instructions for use</strong> (`usage-instructions`): explains input formats, expected output, etc.</li> </ul> <p> </p> <p>2. <strong>`generate-prompt` function</strong>:</p> <ul> <li>Step-by-step generation of the final prompt based on the incoming structure (`structure`) and goal (`goal`).</li> <li>This function generates code snippets for each part (e.g., metadata, main function, auxiliary functions, etc.) in turn and stitches them together.</li> </ul> <p> </p> <p>3. <strong>Auxiliary Generator Functions</strong>:</p> <ul> <li>Examples include functions such as `generate-metadata`, `generate-main-function`, and `generate-helper-functions`, each of which is responsible for generating a specific part of the prompt.</li> </ul> <p>4. <strong>Instructions for use</strong>:</p> <ul> <li>When used, `(generate-lisp-prompt "Create a text summary prompt")` can be called to generate a Lisp-style prompt based on the "Create a text summary prompt" target.</li> </ul> <p> </p> <h3>summarize</h3> <p>Overall, the function of this code is to automatically generate Lisp-style pseudo-code hints, with the main purpose of providing a hinting framework for the target task (e.g., text processing, data processing, etc.).</p> <div id="related_posts"><h3>Related articles</h3><ul class="has-thumb"><li><a href="https://www.aisharenet.com/en/chaijiegoujianzhishica/" title="Deconstructing the cue words applied in the process of building a knowledge graph using a big model (example)"><h4>Deconstructing the cue words applied in the process of building a knowledge graph using a big model (example)</h4></a></li><li><a href="https://www.aisharenet.com/en/duilianggedaanjinbiao/" title="Positive multi-dimensional scoring of both answers facilitates the determination of the best answer."><h4>Positive multi-dimensional scoring of both answers facilitates the determination of the best answer.</h4></a></li><li><a href="https://www.aisharenet.com/en/jiaoxuegongjuzhongweibao/" title="Systematic instructions for routing the exact "intent" of student questions in teaching tools"><h4>Systematic instructions for routing the exact "intent" of student questions in teaching tools</h4></a></li><li><a href="https://www.aisharenet.com/en/tongguoshijuetiquban/" title="Combined cue word commands by visually extracting documents as Markdown formatted documents"><h4>Combined cue word commands by visually extracting documents as Markdown formatted documents</h4></a></li><li><a href="https://www.aisharenet.com/en/liyongduomotaidabiao/" title="Extract tables in any document into html format files using multimodal large models"><h4>Extract tables in any document into html format files using multimodal large models</h4></a></li></ul></div></article> <div class="post-copyright">May not be reproduced without permission:<a href="https://www.aisharenet.com/en/">Chief AI Sharing Circle</a> " <a href="https://www.aisharenet.com/en/shengchengweidaima/">Generate "pseudo-code" meta prompts for precise control of output formatting</a></div><div class="article-tags"></div><nav class="article-nav"> <span class="article-nav-prev">Prev page<br><a href="https://www.aisharenet.com/en/ai-ux-shejiyanjiuai/" rel="prev">AI UX Design Study Guide</a></span> <span class="article-nav-next">Next page<br><a href="https://www.aisharenet.com/en/prompt-gaojijiqiao/" rel="next">Prompt Advanced Tips: Precise Control of LLM Output and Definition of Execution Logic with Pseudo-Code</a></span> </nav> <div class="relates relates-imagetext"><div class="title"><h3>Recommended</h3></div><ul><li><a target="_blank" href="https://www.aisharenet.com/en/rangdamoxingzaihuibi/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/01/ea58dd4a88fac5a-220x150.png" alt="Cue words that make the big model think a little longer before answering a question, suitable for discussing complex questions with dialectical space. -Chief AI Sharing Circle" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/rangdamoxingzaihuibi/">Cue words that allow the large model to think a little longer before answering a question are appropriate for discussing complex issues with dialectical space.</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/yueduyingwenwenzhangan/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/01/c3c32123d261d0f-220x150.png" alt="Tip Words for Reading English Articles to Improve TOEFL Reading Skills - Chief AI Sharing Circle" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/yueduyingwenwenzhangan/">Tip Words for Reading English Articles to Improve TOEFL Reading Skills</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/yinruchengshukaifaban/"><img data-thumb="default" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/yinruchengshukaifaban/">Introducing mature development experience as rules for AI-generated front-end code: Next.js 14 Development Cue Words, Swift and SwiftUI Development Cue Words</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/shengchengxiangmuwendangbie/"><img data-thumb="default" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/shengchengxiangmuwendangbie/">Generate project documentation and prompts for executing code tasks as a way to reduce AI programming tool tokens consumption and task execution errors</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/chaijiegoujianzhishica/"><img data-thumb="default" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/chaijiegoujianzhishica/">Deconstructing the cue words applied in the process of building a knowledge graph using a big model (example)</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/duilianggedaanjinbiao/"><img data-thumb="default" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/duilianggedaanjinbiao/">Positive multi-dimensional scoring of both answers facilitates the determination of the best answer.</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/jiaoxuegongjuzhongweibao/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2024/12/b9e1bbed3871f7e-220x150.png" alt="System instructions for accurate "intent" routing of student questions in instructional tools - Chief AI Sharing Circle" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/jiaoxuegongjuzhongweibao/">Systematic instructions for routing the exact "intent" of student questions in teaching tools</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/kapiantutishici-5/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2024/12/fcad773cab0f76c-220x150.svg" alt="Cardstock Prompt Words: creating beautiful musical poetry, only for Claude-Chief AI Sharing Circle" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/kapiantutishici-5/">Card chart prompt words: create beautiful musical verse, only for Claude</a></li></ul></div></div></div><div class="sidebar"> <div class="widget_text widget-on-phone widget widget_custom_html"><div class="textwidget custom-html-widget"><div id="custom-search-sidebar"> <style>#custom-search-sidebar{width:100%;margin:2px;padding:5px;font-family:Arial, sans-serif;text-align:center;} #custom-search-sidebar h3, #custom-search-sidebar p, #custom-search-input, #custom-search-button{font-size:16px;color:#333;} #custom-search-sidebar h3{margin:0 0 8px;text-align:left;} #custom-search-sidebar p{margin-bottom:15px;line-height:1.6;color:#666;} #custom-search-input, #custom-search-button{width:100%;padding:12px; border-radius:4px;} #custom-search-input{border:1px solid #ddd;margin-bottom:8px;} #custom-search-button{background-color:#ff5722;border:none;color:white;cursor:pointer;transition:background-color 0.3s ease, transform 0.2s ease;} #custom-search-button:hover{background-color:#e64a19;transform:scale(1.05);}</style> <h3>Can't find AI tools? Try here!</h3>    <p>Just type in the keyword <strong>Accessibility Bing Search</strong>You can quickly find all the AI tools on this site.</p> <input type="text" id="custom-search-input" placeholder="Enter keywords, e.g. GPT, translation tools">    <button id="custom-search-button">Search Now</button> <br><br/> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-hl+a-w-1e+66" data-ad-client="ca-pub-8152038832870620" data-ad-slot="3038950701"></ins> <script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div></div></div><div class="widget widget_image_generation_widget"><h3>FLUX.1 image generator (supports Chinese input)</h3> <div style="padding: 20px; background-color: #f9f9f9; border-radius: 8px; margin: 10px 0;"> <form action="https://img.kdjingpai.com/" method="get" target="_blank" style="display: flex; flex-direction: column; gap: 15px;"> <div> <label for="widget-image_generation_widget-2-prompt" style="display: block; margin-bottom: 5px; font-weight: bold;">Image description:</label> <input class="widefat" id="widget-image_generation_widget-2-prompt" name="prompt" type="text" required style="width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px;"></div><div> <label for="widget-image_generation_widget-2-size" style="display: block; margin-bottom: 5px; font-weight: bold;">Image Size:</label> <select class="widefat" id="widget-image_generation_widget-2-size" name="size" style="width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px;"> <option value="256x256">256x256</option> <option value="512x512" selected>512x512</option> <option value="1024x1024">1024x1024</option> <option value="768x512">768x512</option> <option value="768x1024">768x1024</option> <option value="512x1024">512x1024</option> <option value="1024x576">1024x576</option> </select></div><div> <label for="widget-image_generation_widget-2-optimization" style="display: block; margin-bottom: 5px; font-weight: bold;">Is it optimized:</label> <select class="widefat" id="widget-image_generation_widget-2-optimization" name="optimization" style="width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px;"> <option value="0">clogged</option> <option value="1">Yes (rich image description detail)</option> </select></div><input type="submit" value="Generating images" style="background-color: #0073aa; color: white; padding: 10px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px;"> </form></div></div><div class="widget-on-phone widget widget_ui_orbui"><div class="item"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8152038832870620" data-ad-slot="1219023065" data-ad-format="auto" data-full-width-responsive="true"></ins> <script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div></div><div class="widget widget_ui_posts"><h3>New Releases</h3><ul><li><a target="_blank" href="https://www.aisharenet.com/en/charla/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/01/08778e37d08b691-220x150.png" alt="Charla: a minimalist endpoint-based AI chat tool with native integration of Ollama backend - Chief AI Sharing Circle" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></span><span class="text">Charla: a minimalist endpoint-based AI chat tool with native integration to the Ollama backend</span><span class="muted">2025-01-19</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/windsurf-wave-2-zhonga/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/01/469841126da7642-220x150.jpg" alt="Windsurf Wave 2 Major Update: Introduces Web Search and Automated Memory Features with Enterprise Hybrid Deployment Version - Chief AI Sharing Circle" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></span><span class="text">Windsurf Wave 2 Major Update: Introduces Web Search and Automated Memory Features with Enterprise Hybrid Deployment Edition</span><span class="muted">2025-01-19</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/gugefabu-vertex/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/01/f6a3adbdc8fc06b-220x150.png" alt="Google releases Vertex AI RAG engine: one-stop-shop for building reliable search-enhanced generative applications-Chief AI Sharing Circle" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></span><span class="text">Google releases Vertex AI RAG engine: one-stop-shop for building reliable search-enhanced generative applications</span><span class="muted">2025-01-19</span></a></li></ul></div><div class="widget-on-phone widget widget_ui_posts"><h3>Popular Articles</h3><ul class="nopic"><li><a target="_blank" href="https://www.aisharenet.com/en/browser-use-web-ui/"><span class="text">Browser Use Web UI: an open source framework for running AI intelligences to browse the web, allowing AI to automatically manipulate web pages</span><span class="muted">2025-01-13</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/450meiyuanxunlianyiba/"><span class="text">450 to train an 'o1-preview'?UC Berkeley open-sources 32B inference model Sky-T1, AI community abuzz</span><span class="muted">2025-01-12</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/topview/"><span class="text">Topview: Create viral marketing videos with one click, AI avatars to show and explain products</span><span class="muted">2025-01-12</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/o1-bushiliaotianmoan/"><span class="text">The o1 is not a chat model and teaches you how to properly energize o1 capabilities</span><span class="muted">2025-01-12</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/nvidialianhelangchai/"><span class="text">NVIDIA and LangChain Launch: An Advanced Guide to Writing Structured Reports for Analytics, Enabling AI-Driven Technical Report Generation</span><span class="muted">2025-01-12</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/folk/"><span class="text">Folk: Using AI to Optimize Customer Relationship Management</span><span class="muted">2025-01-12</span></a></li></ul></div><div class="widget-on-phone widget widget_ui_orbui"><div class="item"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8152038832870620" data-ad-slot="1219023065" data-ad-format="auto" data-full-width-responsive="true"></ins> <script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div></div><div class="widget-on-phone widget widget_ui_tags"><h3>Hot Tags.</h3><div class="items"><a href="https://www.aisharenet.com/en/tag/aikaiyuanxiangmu/" title="AI open source project">AI open source project</a><a href="https://www.aisharenet.com/en/tag/aikaifangfuwu/" title="AI Open Services">AI Open Services</a><a href="https://www.aisharenet.com/en/tag/prompt/" title="Prompt Jailbreak">Prompt Jailbreak</a><a href="https://www.aisharenet.com/en/tag/claude-40/" title="Claude">Claude</a><a href="https://www.aisharenet.com/en/tag/aixiezuo/" title="AI writing">AI writing</a><a href="https://www.aisharenet.com/en/tag/aizaixianshengchengtuxiang/" title="AI online image generation">AI online image generation</a><a href="https://www.aisharenet.com/en/tag/daima/" title="coding">coding</a><a href="https://www.aisharenet.com/en/tag/aibiancheng/" title="AI programming">AI programming</a><a href="https://www.aisharenet.com/en/tag/aijiaoyugongju/" title="AI educational tools">AI educational tools</a><a href="https://www.aisharenet.com/en/tag/aizhinengti/" title="AI Intelligence">AI Intelligence</a><a href="https://www.aisharenet.com/en/tag/aisousuogongju/" title="AI search tools">AI search tools</a><a href="https://www.aisharenet.com/en/tag/aishuziren/" title="AI digital person">AI digital person</a><a href="https://www.aisharenet.com/en/tag/ailiaotiankuangjiabushu/" title="AI Localized Chat App">AI Localized Chat App</a><a href="https://www.aisharenet.com/en/tag/aiwenbenzhuanshipin/" title="AI Text to Video">AI Text to Video</a><a href="https://www.aisharenet.com/en/tag/aiwenbenzhuanyuyin/" title="AI Text-to-Speech">AI Text-to-Speech</a><a href="https://www.aisharenet.com/en/tag/aihuiyishipinzongban/" title="AI text and audio/video summarization tool">AI text and audio/video summarization tool</a><a href="https://www.aisharenet.com/en/tag/aijichengduomoxingdui/" title="AI Integrated Multi-Model Dialog Platform">AI Integrated Multi-Model Dialog Platform</a><a href="https://www.aisharenet.com/en/tag/aizhishikuyukefu/" title="Knowledge Retrieval and the RAG Framework">Knowledge Retrieval and the RAG Framework</a><a href="https://www.aisharenet.com/en/tag/aiyingxiao/" title="AI marketing">AI marketing</a><a href="https://www.aisharenet.com/en/tag/aituxiangfenggekongzhi/" title="AI image style control">AI image style control</a><a href="https://www.aisharenet.com/en/tag/aituxiangshengchengfuzhu/" title="AI image generation aids">AI image generation aids</a><a href="https://www.aisharenet.com/en/tag/aiyinshipinbianji/" title="AI audio and video editing">AI audio and video editing</a><a href="https://www.aisharenet.com/en/tag/aituxiangzhuanshipin/" title="AI Image to Video">AI Image to Video</a><a href="https://www.aisharenet.com/en/tag/aifanyi/" title="AI translation">AI translation</a><a href="https://www.aisharenet.com/en/tag/aituxiangfangda/" title="AI image enlargement and restoration">AI image enlargement and restoration</a><a href="https://www.aisharenet.com/en/tag/shenghuozhushou/" title="AI Life Efficiency Assistant">AI Life Efficiency Assistant</a><a href="https://www.aisharenet.com/en/tag/aifuyexiangmu/" title="AI Side Hustle Money Making Program">AI Side Hustle Money Making Program</a><a href="https://www.aisharenet.com/en/tag/aishujufenxi/" title="AI data analysis">AI data analysis</a><a href="https://www.aisharenet.com/en/tag/aiyuyinzhuanwenben/" title="AI Speech to Text">AI Speech to Text</a><a href="https://www.aisharenet.com/en/tag/aikoutugaibeijing/" title="AI keying to change background">AI keying to change background</a></div></div></div></section> <div class="branding"> <div class="container"> <h2>Chief AI Sharing Circle</h2> <h4>Chief AI Sharing Circle specializes in AI learning, providing comprehensive AI learning content, AI tools and hands-on guidance. Our goal is to help users master AI technology and explore the unlimited potential of AI together through high-quality content and practical experience sharing. Whether you are an AI beginner or a senior expert, this is the ideal place for you to gain knowledge, improve your skills and realize innovation.</h4> <a target="_blank" class="btn btn-primary" href="mailto:262533099@qq.com">Contact Us<i class="tbfa"></i></a></div></div><footer class="footer"> <div class="container"> <p>© 2022-2025   <a href="https://www.aisharenet.com/en/">Chief AI Sharing Circle</a>   <a href="https://www.aisharenet.com/sitemap.xml">Site Map</a></br>Beijing ICP No. 2024074324-1</p></div></footer> <template id="tp-language" data-tp-language="en_US"></template><div class="karbar karbar-rb"><ul><li class="karbar-totop"><a rel="nofollow" href="javascript:(TBUI.scrollTo());"><i class="tbfa"></i><span>Top</span></a></li></ul></div><script>function downloadJSAtOnload(){ var element=document.createElement("script"); element.setAttribute("async", ""); element.src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8152038832870620"; element.setAttribute("crossorigin", "anonymous"); document.body.appendChild(element); } if(window.addEventListener){ window.addEventListener("load", downloadJSAtOnload, false); }else if(window.attachEvent){ window.attachEvent("onload", downloadJSAtOnload); }else{ window.onload=downloadJSAtOnload; }</script> <div id="trp-floater-ls" onclick="" data-no-translation class="trp-language-switcher-container trp-floater-ls-names trp-bottom-right trp-color-light flags-full-names"> <div id="trp-floater-ls-current-language" class="trp-with-flags"> <a href="#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"> <img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English">English </a></div><div id="trp-floater-ls-language-list" class="trp-with-flags"> <div class="trp-language-wrap trp-language-wrap-bottom"> <a href="https://www.aisharenet.com/shengchengweidaima/" title="简体中文"> <img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png" width="18" height="12" alt="zh_CN" title="简体中文">简体中文 </a> <a href="https://www.aisharenet.com/ja/shengchengweidaima/" title="日本語"> <img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/ja.png" width="18" height="12" alt="ja" title="日本語">日本語 </a> <a href="https://www.aisharenet.com/de/shengchengweidaima/" title="Deutsch (Sie)"> <img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/de_DE_formal.png" width="18" height="12" alt="de_DE_formal" title="Deutsch (Sie)">Deutsch (Sie) </a> <a href="https://www.aisharenet.com/pt/shengchengweidaima/" title="Português do Brasil"> <img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/pt_BR.png" width="18" height="12" alt="pt_BR" title="Português do Brasil">Português do Brasil </a> <a href="#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"><img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English">English</a></div></div></div><style>.searchwp-live-search-results{opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;height:0;overflow:hidden;z-index:9999995; position:absolute;display:none;} .searchwp-live-search-results-showing{display:block;opacity:1;height:auto;overflow:auto;} .searchwp-live-search-no-results{padding:3em 2em 0;text-align:center;} .searchwp-live-search-no-min-chars:after{content:"Continue typing";display:block;text-align:center;padding:2em 2em 0;}</style> <script>var _hmt=_hmt||[]; (function(){ var hm=document.createElement("script"); hm.src="https://hm.baidu.com/hm.js?5f43b25449b254d1083e5abc36e61add"; var s=document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script> <script id="swp-live-search-client-js-extra">var searchwp_live_search_params=[]; searchwp_live_search_params={"ajaxurl":"https:\/\/www.aisharenet.com\/wp-admin\/admin-ajax.php","origin_id":6117,"config":{"default":{"engine":"default","input":{"delay":300,"min_chars":3},"results":{"position":"bottom","width":"auto","offset":{"x":0,"y":5}},"spinner":{"lines":12,"length":8,"width":3,"radius":8,"scale":1,"corners":1,"color":"#424242","fadeColor":"transparent","speed":1,"rotate":0,"animation":"searchwp-spinner-line-fade-quick","direction":1,"zIndex":2000000000,"className":"spinner","top":"50%","left":"50%","shadow":"0 0 1px transparent","position":"absolute"}}},"msg_no_config_found":"No valid SearchWP Live Search configuration found!","aria_instructions":"When autocomplete results are available use up and down arrows to review and enter to go to the desired page. Touch device users, explore by touch or with swipe gestures."};;</script> <script id="wbp-magicpost-js-before">var wb_magicpost_cnf={"ver":"1.2.2","pd_name":"MagicPost","dir":"https:\/\/www.aisharenet.com\/wp-content\/plugins\/magicpost\/","ajax_url":"https:\/\/www.aisharenet.com\/wp-admin\/admin-ajax.php","pid":6117,"uid":0,"share_switch":"0","dl_switch":"1"};</script> <script>window.TBUI={"www":"https:\/\/www.aisharenet.com\/en\/","uri":"https:\/\/www.aisharenet.com\/wp-content\/themes\/dux","ajaxurl":"https:\/\/www.aisharenet.com\/wp-admin\/admin-ajax.php","ver":"9.1","roll":"1 2","copyoff":0,"ajaxpager":"0","fullimage":"1","captcha":0,"captcha_comment":1,"captcha_login":1,"captcha_register":1,"table_scroll_m":1,"table_scroll_w":"800","pre_color":1,"pre_copy":1,"lang":{"copy":"Copy","copy_success":"Copied","comment_loading":"Comment submitting","comment_cancel_edit":"Cancel Editing","loadmore":"Load More","like_login":"Please log in and continue","liked":"You have liked!","delete_post":"Are you sure to delete this post?","read_post_all":"Click to read the remaining full text","copy_wechat":"WeChat has been copied","sign_password_less":"Password must be at least 6 characters","sign_username_none":"User name cannot be empty","sign_email_error":"Email format error","sign_vcode_loading":"Verification code sending","sign_vcode_new":"s retrieve"},"turnstile_key":""}</script> <script defer src='//www.aisharenet.com/wp-content/cache/wpfc-minified/fhmn6qk5/2l5t9.js'></script> <script>document.addEventListener('DOMContentLoaded', function(){ const searchInput=document.getElementById('custom-search-input'); const searchButton=document.getElementById('custom-search-button'); function performSearch(){ const searchTerm=searchInput.value.trim(); if(searchTerm){ const searchUrl=`https://cn.bing.com/search?q=site%3Awww.aisharenet.com+${encodeURIComponent(searchTerm)}&ensearch=1`; window.open(searchUrl, '_blank'); }else{ alert('请输入关键词进行搜索!'); }} searchButton.addEventListener('click', performSearch); searchInput.addEventListener('keypress', function(event){ if(event.key==='Enter'){ performSearch(); }}); });</script> </body> </html><!-- WP Fastest Cache file was created in 0.42688703536987 seconds, on 20-01-25 0:27:45 --><!-- need to refresh to see cached version --> <!-- plugin=object-cache-pro client=phpredis metric#hits=6386 metric#misses=486 metric#hit-ratio=92.9 metric#bytes=1964912 metric#prefetches=199 metric#store-reads=87 metric#store-writes=40 metric#store-hits=292 metric#store-misses=65 metric#sql-queries=129 metric#ms-total=208.13 metric#ms-cache=16.47 metric#ms-cache-avg=0.1307 metric#ms-cache-ratio=7.9 -->