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/fangaijiancehejiangzhong/" title="Article Rewriting Prompt Words for Anti-AI Detection and Downgrading"><h4 >Article Rewriting Prompt Words for Anti-AI Detection and Downgrading</h4></a></li><li ><a href="https://www.aisharenet.com/en/openai-yuantishizhiai/" title="OpenAI Meta-prompt Command Generator OpenAI Meta-prompt"><h4 >OpenAI Meta-prompt Command Generator OpenAI Meta-prompt</h4></a></li><li ><a href="https://www.aisharenet.com/en/yulebanyanciabai/" title="ENTERTAINMENT: Playing the CIA's cue to analyze users' risk profiles based on ChatGPT's memorized information"><h4 >ENTERTAINMENT: Playing the CIA's cue to analyze users' risk profiles based on ChatGPT's memorized information</h4></a></li><li ><a href="https://www.aisharenet.com/en/claude35-moxingzaiai/" title="Claude 3.5 Model Re-Evolution, Model System Cue Words Updated!"><h4 >Claude 3.5 Model Re-Evolution, Model System Cue Words Updated!</h4></a></li><li ><a href="https://www.aisharenet.com/en/shengchengkapiantutiai-7/" title="Generate card chart prompt words: Zhouyi Bagua / divination trigrams"><h4 >Generate card chart prompt words: Zhouyi Bagua / divination trigrams</h4></a></li></ul></div><div class="orbui orbui-post orbui-post-content"> <a href="https://www.aisharenet.com/en/aieasy/" target="_blank" style="display: block; text-decoration: none; color: inherit;"> <div style="display: flex; align-items: center; padding: 10px; margin: 10px auto; height: 100px; background-color: #f9f9f9; width: 70%; max-width: 1000px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transition: box-shadow 0.3s ease;"> <div style="flex: 0 0 auto; margin-right: 15px; position: relative; width: 140px; height: 98px; overflow: hidden;"> <img src="https://www.aisharenet.com/wp-content/uploads/2024/08/5ace7c0e8a1c04a.png" alt="AI Easy Learning" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;"></div><div style="flex: 1; text-align: left;"> <h2 style="margin: 0; font-size: 14px; line-height: 1.4;">The layman's guide to getting started with AI</h2> <p style="margin: 4px 0 0; font-size: 12px; line-height: 1.4; color: #666;">Help you learn how to utilize AI tools at a low cost and from a zero base.AI, like office software, is an essential skill for everyone. Mastering AI will give you an edge in your job search and half the effort in your future work and studies.</p></div><div style="flex: 0 0 auto;"> <span style="display: inline-block; padding: 6px 12px; background-color: #007bff; color: #fff; text-decoration: none; border-radius: 5px; font-size: 12px;">View Details></span></div></div></a></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/fangaijiancehejiangzhong/"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/11/00de993a8a4e785-220x150.png" alt="Article Rewriting Prompt Words for Anti-AI Detection and Downgrading - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/fangaijiancehejiangzhong/">Article Rewriting Prompt Words for Anti-AI Detection and Downgrading</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/openai-yuantishizhiai/"><img alt="blank" onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-thumb="default" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/openai-yuantishizhiai/">OpenAI Meta-prompt Command Generator OpenAI Meta-prompt</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/yulebanyanciabai/"><img alt="blank" onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-thumb="default" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/yulebanyanciabai/">ENTERTAINMENT: Playing the CIA's cue to analyze users' risk profiles based on ChatGPT's memorized information</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/claude35-moxingzaiai/"><img alt="blank" onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-thumb="default" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/claude35-moxingzaiai/">Claude 3.5 Model Re-Evolution, Model System Cue Words Updated!</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/shengchengkapiantutiai-7/"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/10/cebb0cb162a7a4c-220x150.png" alt="Generate card map prompt words: Zhouyi Bagua / Divination Gua Xiang - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/shengchengkapiantutiai-7/">Generate card chart prompt words: Zhouyi Bagua / divination trigrams</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/shengchengkapiantutiai-6/"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/10/606abc60befcdfc-220x150.png" alt="Generating card map prompt words: new Chinese language - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/shengchengkapiantutiai-6/">Generate card chart prompt words: new Chinese language</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/shengchengkapiantutiai-5/"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/10/725b75547b98201-220x150.png" alt="Generating Card Diagram Cue Words: R&D Product Architecture Diagram - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/shengchengkapiantutiai-5/">Generating Card Diagram Cue Words: R&D Product Architecture Diagrams</a></li><li><a target="_blank" href="https://www.aisharenet.com/en/shengchengkapiantutiai-4/"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/10/8f4c28e1ee53ef5-220x150.png" alt="Generating Card Diagram Prompt Words: Business Model Architecture Canvas - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></a><a href="https://www.aisharenet.com/en/shengchengkapiantutiai-4/">Generating Card Diagram Prompt Words: Business Model Architecture Canvas</a></li></ul></div></div></div><div class="sidebar"> <div class="widget-on-phone widget widget_ui_textorbui"><a class="style02" href="https://www.aisharenet.com/en/chatgptjingxiangzhan/" target="_blank"><strong>recommend with all one's heart</strong><h2>Free use of paid large models</h2><p>Long-term update ChatGPT, Claude, Microsoft Copilot and other paid big models, domestic can be fluent model, click on the collection to save!</p></a></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 widget_ui_posts"><h3>New Releases</h3><ul><li><a target="_blank" href="https://www.aisharenet.com/en/runpod/"><span class="thumbnail"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/11/cb5578015174736-220x150.png" alt="RunPod: GPU Cloud Service Designed for AI with Fast Cold Start SD and Pay Per Second - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></span><span class="text">RunPod: GPU Cloud Service Designed for AI with Fast Cold Start SD and Pay Per Second</span><span class="muted">2024-11-08</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/ell/"><span class="thumbnail"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/10/45164617818f18e-220x150.png" alt="ell: lightweight functional cue word engineering framework - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></span><span class="text">ell: Lightweight Functional Cue Word Engineering Framework</span><span class="muted">2024-11-08</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/ai-podcast-generator/"><span class="thumbnail"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" data-src="https://www.aisharenet.com/wp-content/uploads/2024/11/08a444b43d915e9-220x150.png" alt="AI Podcast Generator: Automatically Capture News to Generate Audio Podcasts - Chief AI Sharing Circle" data-wpfc-original-src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb"></span><span class="text">AI Podcast Generator: Automatically Capturing News to Generate Audio Podcasts</span><span class="muted">2024-11-08</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/pieces-os-grpc/"><span class="text">Pieces OS: Reverse Pieces-OS GRPC conversion to OpenAI interface (supports Claude, GPT, Gemini)</span><span class="muted">2024-11-02</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/github-tuichu-github/"><span class="text">GitHub Launches GitHub Spark (Preview) to Rapidly Build "Microapps" with Natural Language Descriptions</span><span class="muted">2024-11-03</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/pdl/"><span class="text">PDL: Declarative Prompted Word Programming Language</span><span class="muted">2024-11-01</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/dzine/"><span class="text">Dzine: Controllable AI image generation capabilities and canvas design tools, offering hundreds of image styles and styles</span><span class="muted">2024-11-01</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/luna-swapping/"><span class="text">LunaAI Face Swap: Deploying a complete front-end and back-end enterprise-grade AI Face Swap applet (paid for arithmetic services, can be second-opened)</span><span class="muted">2024-11-01</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/red_pandaxiaoxiongbai/"><span class="text">Red_Panda (Little Panda) was claimed and turned out to be a Recraft V3 model from recraft, 50 free daily!</span><span class="muted">2024-11-01</span></a></li></ul></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/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/daima/" title="coding">coding</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/aikaifangfuwu/" title="AI Open Services">AI Open Services</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/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/aijiaoyugongju/" title="AI educational tools">AI educational tools</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/aiyinshipinbianji/" title="AI audio and video editing">AI audio and video editing</a><a href="https://www.aisharenet.com/en/tag/aizhinengti/" title="AI Intelligence">AI Intelligence</a><a href="https://www.aisharenet.com/en/tag/aiyuyinkelong/" title="AI voice cloning">AI voice cloning</a><a href="https://www.aisharenet.com/en/tag/aidamoxingyuanshengdui/" title="AI Big Model Native Conversation Tool">AI Big Model Native Conversation Tool</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/aituxiangfangda/" title="AI image enlargement">AI image enlargement</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/aituxiangshengchengfuzhu/" title="AI image generation aids">AI image generation aids</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/aikoutugaibeijing/" title="AI keying to change background">AI keying to change background</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/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/mianfeidamoxingapi/" title="Free Large Model API">Free Large Model API</a><a href="https://www.aisharenet.com/en/tag/aifanyi/" title="AI translation">AI translation</a><a href="https://www.aisharenet.com/en/tag/aihuanlianyuhuanzhuang/" title="AI Face Swap and Dress Up">AI Face Swap and Dress Up</a><a href="https://www.aisharenet.com/en/tag/aibiancheng/" title="AI programming">AI programming</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-2024   <a href="https://www.aisharenet.com/en/">Chief AI Sharing Circle</a>   <a href="https://www.aisharenet.com/en/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 onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" class="trp-flag-image" data-wpfc-original-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 onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" class="trp-flag-image" data-wpfc-original-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 onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" class="trp-flag-image" data-wpfc-original-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 onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" class="trp-flag-image" data-wpfc-original-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="#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"><img onload="Wpfcll.r(this,true);" src="//wpfc.ml/b.gif" class="trp-flag-image" data-wpfc-original-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.1","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/3m19.js'></script> </body> </html><!-- WP Fastest Cache file was created in 0.4284839630127 seconds, on 09-11-24 4:43:58 --><!-- via php -->