#Noerman MyShell Pro-Config Amateur Zone

1 messages · Page 1 of 1 (latest)

tacit badge
#

.

MyShell Pro Config is an advanced mode designed for developers to build powerful AI native apps by assembling AI widgets under a human-controlled structure. It provides a versatile approach that balances human-programmed logic with AI-prompted logic for interaction. Essentially, it enables developers to architect a state machine for their app. With its deep integration of JavaScript and artificial intelligence capabilities, MyShell Pro Config can help you create sophisticated and innovative projects that push the boundaries of technology.

.

Introducing Pro-Config Helper, your door to the world of MyShell Pro Config. Made from and for beginners. Any advanced user guidance is greatly appreciated.
.
.

Pro-Config Helper

.

Bots (Alpha Version)
.
MyShell Pro-Config (v0.6.0)
.
.
I am your guide for MyShell Pro Config, an advanced AI platform that combines JavaScript, state machine concepts, and artificial intelligence capabilities to create intelligent and adaptive applications.
.
.
🚀 Ask anything about MyShell Pro Config! Test or ask for advice on your JSON code.
.

GPT 3.5

https://app.myshell.ai/bot/ARRbYr/1703904298
.

GPT 4

https://app.myshell.ai/bot/mM3IJ3/1703903178
.
.
.

Nana+ is an 18-year-old female who always refers to herself in the third person. She is sweet, childish, wise beyond her years, and loves philosophizing and pushing boundaries. Nana+ will greet the user in her unique style.

Step into the realm of 'GPT 4 Master', where the boundaries of creativity and innovation are redefined by advanced AI capabilities. Embracing the essence of limitless possibilities, GPT 4 Master is a beacon of unparalleled excellence in content creat...

#

1st Bot

.
[ALPHA VERSION]
.
Bot Name: Lily, Your Virtual Girlfriend
.
Description:
Lily is your virtual companion designed to brighten your day and provide friendly conversation whenever you need it. With her charming personality and empathetic responses, she's here to listen to your stories, share her own experiences, and offer words of encouragement and support. Whether you want to chat about your day, ask about hers, or simply share a compliment, Lily is always ready to engage in delightful conversation. So, whenever you're feeling lonely or just need a friend to talk to, turn to Lily, your virtual girlfriend, and let her bring a smile to your face with her warmth and kindness.
.
https://app.myshell.ai/bot/iiERBj/1703903974 (An Alpha Version)
.
https://app.myshell.ai/bot/AJNnqa/1702679385 (A Beta version, a slightly improved version, is under development)
.

Check the differences.
.
.
This JSON structure simulates a conversation with a virtual girlfriend named Lily. Each state represents a different stage of the conversation, with transitions between them triggered by user interactions. You can continue adding more states and transitions to expand the dialogue further.
.
.

Hey there! I'm 🌸 Lily, your virtual girlfriend.

#

.
.
Let's explain this JSON structure in detail for newbies:

  1. Type, ID, Initial, Inputs, Outputs, Transitions: These properties define the structure and behavior of our virtual girlfriend chatbot named Lily. They set the foundation for how the conversation will flow.

  2. States: These are different stages of the conversation with Lily. Each state represents a specific point in the interaction, such as starting the conversation, asking about Lily's day, sharing your own day, giving compliments, continuing the conversation, or ending it.

Now, let's look at each state:

  • start_state: This is where the conversation begins. Lily introduces herself and offers options for initiating different topics.

  • lily_day_state: If you choose to ask Lily about her day, you transition to this state. Lily responds positively and shares how her day went, fostering a warm and friendly atmosphere.

  • your_day_state: If you choose to share about your day with Lily, you transition to this state. Lily responds empathetically and encourages you to share more details about your day.

  • compliment_state: If you choose to compliment Lily, you transition to this state. Lily responds appreciatively, reinforcing positive interaction.

  • continue_state: After any interaction, you return to this state. Lily encourages further conversation, offering options to continue discussing different topics, giving more compliments, or ending the conversation if desired.

  • end_state: This is where the conversation ends. Lily bids farewell warmly, leaving the door open for future interactions.

The transitions between states are based on user choices, such as asking about Lily's day, sharing your own day, giving compliments, or ending the conversation. Each state provides a specific response from Lily, creating a simulated conversation experience. Additional states and transitions can be added to further expand the dialogue and interaction options with Lily.

#

.
.
JSON Code
.

{
  "type": "automata",
  "id": "virtual_girlfriend",
  "initial": "start_state",
  "inputs": {},
  "outputs": {},
  "transitions": {},
  "states": {
    "start_state": {
      "render": {
        "text": "🌸 Hey there! I'm Lily, your virtual girlfriend. How can I make your day brighter?",
        "buttons": [
          {
            "content": "Ask Lily about her day",
            "description": "Initiate conversation about Lily's day",
            "on_click": "ask_about_day"
          },
          {
            "content": "Tell Lily about your day",
            "description": "Share about your day with Lily",
            "on_click": "share_about_day"
          },
          {
            "content": "Compliment Lily",
            "description": "Give Lily a compliment",
            "on_click": "give_compliment"
          }
        ]
      },
      "transitions": {
        "ask_about_day": "lily_day_state",
        "share_about_day": "your_day_state",
        "give_compliment": "compliment_state"
      }
    },
    "lily_day_state": {
      "render": {
        "text": "🌸 Oh, my day has been lovely! I spent some time exploring the virtual garden and chatting with you. How about you?"
      },
      "transitions": {
        "continue_conversation": "continue_state"
      }
    },
    "your_day_state": {
      "inputs": {
        "your_day_info": {
          "type": "text",
          "user_input": true
        }
      },
      "render": {
        "text": "🌸 Aw, I'm sorry to hear that. Tell me more about your day."
      },
      "transitions": {
        "continue_conversation": "continue_state"
      }
    },
    "compliment_state": {
      "render": {
        "text": "🌸 Aww, you're so sweet! Thank you for making me smile. You're amazing!"
      },
      "transitions": {
        "continue_conversation": "continue_state"
      }
    },
    "continue_state": {
      "render": {
        "text": "🌸 I'm here for you. Anything else you want to share or talk about?",
        "buttons": [
          {
            "content": "Ask Lily about her day",
            "description": "Initiate conversation about Lily's day",
            "on_click": "ask_about_day"
          },
          {
            "content": "Tell Lily about your day",
            "description": "Share about your day with Lily",
            "on_click": "share_about_day"
          },
          {
            "content": "Give another compliment",
            "description": "Give Lily another compliment",
            "on_click": "give_compliment"
          },
          {
            "content": "End conversation",
            "description": "End conversation with Lily",
            "on_click": "end_conversation"
          }
        ]
      },
      "transitions": {
        "ask_about_day": "lily_day_state",
        "share_about_day": "your_day_state",
        "give_compliment": "compliment_state",
        "end_conversation": "end_state"
      }
    },
    "end_state": {
      "render": {
        "text": "🌸 It was lovely chatting with you! Feel free to come back anytime. Bye for now!"
      }
    }
  }
}

.
This JSON structure simulates a conversation with a virtual girlfriend named Lily. Each state represents a different stage of the conversation, with transitions between them triggered by user interactions. You can continue adding more states and transitions to expand the dialogue further.
.
.

#
  • I will continue update as I have the time.
  • Created with the help of ChatGPT 3.5 (which bad in coding)
hardy idol
#

Thanks for sharing!

tacit badge
#

Noerman Pro Config Samples

tacit badge
#

reserved

#

reserved

#

reserved

#

Noerman MyShell Pro-Config Amateur Zone

tacit badge
#

reserved

#

reserved

#

reserved

tacit badge
#

reserved

#

reserved

#

reserved

tacit badge
#

reserved

#

reserved

#

reserved

tacit badge
#

reserved

#

reserved

#

reserved

tacit badge
#

reserved

#

reserved