chatbot package

Submodules

chatbot.admin module

chatbot.apps module

class chatbot.apps.ChatbotConfig(app_name, app_module)[source]

Bases: django.apps.config.AppConfig

name = 'chatbot'

chatbot.models module

class chatbot.models.CB_DEF_LIST_INFO(cb_id, chat_cate, chat_sub_cate, cb_title, cb_desc, creation_date, last_update_date, created_by, last_updated_by)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_DEF_LIST_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_DEF_LIST_INFO.cb_desc

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.cb_entity_list_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_DEF_LIST_INFO.cb_entity_relation_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_DEF_LIST_INFO.cb_entity_synonym_list_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_DEF_LIST_INFO.cb_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.cb_intent_list_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_DEF_LIST_INFO.cb_model_list_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_DEF_LIST_INFO.cb_ontology_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_DEF_LIST_INFO.cb_tagging_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_DEF_LIST_INFO.cb_title

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.chat_cate

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.chat_sub_cate

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.created_by

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.creation_date

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.get_next_by_creation_date(*moreargs, **morekwargs)
CB_DEF_LIST_INFO.get_next_by_last_update_date(*moreargs, **morekwargs)
CB_DEF_LIST_INFO.get_previous_by_creation_date(*moreargs, **morekwargs)
CB_DEF_LIST_INFO.get_previous_by_last_update_date(*moreargs, **morekwargs)
CB_DEF_LIST_INFO.last_update_date

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.last_updated_by

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_DEF_LIST_INFO.objects = <django.db.models.manager.Manager object>
class chatbot.models.CB_ENTITY_LIST_INFO(id, cb_id, intent_id, entity_type, entity_list)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_ENTITY_LIST_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_ENTITY_LIST_INFO.cb_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_ENTITY_LIST_INFO.cb_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_LIST_INFO.entity_list

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_LIST_INFO.entity_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_LIST_INFO.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_LIST_INFO.intent_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_ENTITY_LIST_INFO.intent_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_LIST_INFO.objects = <django.db.models.manager.Manager object>
class chatbot.models.CB_ENTITY_RELATION_INFO(id, cb_id, entity_id, entity_uuid, entity_desc)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_ENTITY_RELATION_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_ENTITY_RELATION_INFO.cb_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_ENTITY_RELATION_INFO.cb_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_RELATION_INFO.entity_desc

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_RELATION_INFO.entity_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_RELATION_INFO.entity_uuid

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_RELATION_INFO.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_RELATION_INFO.objects = <django.db.models.manager.Manager object>
class chatbot.models.CB_ENTITY_SYNONYM_LIST(id, cb_id, entity_id, slot_type, represent_value, synonym_value, synonym_desc)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_ENTITY_SYNONYM_LIST.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_ENTITY_SYNONYM_LIST.cb_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_ENTITY_SYNONYM_LIST.cb_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_SYNONYM_LIST.entity_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_SYNONYM_LIST.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_SYNONYM_LIST.objects = <django.db.models.manager.Manager object>
CB_ENTITY_SYNONYM_LIST.represent_value

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_SYNONYM_LIST.slot_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_SYNONYM_LIST.synonym_desc

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ENTITY_SYNONYM_LIST.synonym_value

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

class chatbot.models.CB_INTENT_LIST_INFO(cb_id, intent_id, intent_uuid, intent_type, intent_desc, rule_value, nn_type)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_INTENT_LIST_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_INTENT_LIST_INFO.cb_entity_list_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_INTENT_LIST_INFO.cb_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_INTENT_LIST_INFO.cb_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_INTENT_LIST_INFO.cb_storyboard_list_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_INTENT_LIST_INFO.intent_desc

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_INTENT_LIST_INFO.intent_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_INTENT_LIST_INFO.intent_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_INTENT_LIST_INFO.intent_uuid

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_INTENT_LIST_INFO.nn_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_INTENT_LIST_INFO.objects = <django.db.models.manager.Manager object>
CB_INTENT_LIST_INFO.rule_value

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

class chatbot.models.CB_MODEL_LIST_INFO(id, cb_id, nn_id, nn_purpose, nn_type, nn_label_data, nn_desc)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_MODEL_LIST_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_MODEL_LIST_INFO.cb_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_MODEL_LIST_INFO.cb_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_MODEL_LIST_INFO.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_MODEL_LIST_INFO.nn_desc

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_MODEL_LIST_INFO.nn_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_MODEL_LIST_INFO.nn_label_data

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_MODEL_LIST_INFO.nn_purpose

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_MODEL_LIST_INFO.nn_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_MODEL_LIST_INFO.objects = <django.db.models.manager.Manager object>
class chatbot.models.CB_ONTOLOGY_INFO(id, cb_id, ontology_id, ontology_desc)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_ONTOLOGY_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_ONTOLOGY_INFO.cb_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_ONTOLOGY_INFO.cb_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ONTOLOGY_INFO.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ONTOLOGY_INFO.objects = <django.db.models.manager.Manager object>
CB_ONTOLOGY_INFO.ontology_desc

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_ONTOLOGY_INFO.ontology_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

class chatbot.models.CB_RESPONSE_LIST_INFO(id, story_id, response_type, output_entity, output_data, nn_id)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_RESPONSE_LIST_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_RESPONSE_LIST_INFO.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_RESPONSE_LIST_INFO.nn_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_RESPONSE_LIST_INFO.objects = <django.db.models.manager.Manager object>
CB_RESPONSE_LIST_INFO.output_data

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_RESPONSE_LIST_INFO.output_entity

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_RESPONSE_LIST_INFO.response_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_RESPONSE_LIST_INFO.story_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_RESPONSE_LIST_INFO.story_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

class chatbot.models.CB_SERVICE_LIST_INFO(id, story_id, service_type, service_name, service_model, service_url, nn_id)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_SERVICE_LIST_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_SERVICE_LIST_INFO.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_SERVICE_LIST_INFO.nn_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_SERVICE_LIST_INFO.objects = <django.db.models.manager.Manager object>
CB_SERVICE_LIST_INFO.service_model

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_SERVICE_LIST_INFO.service_name

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_SERVICE_LIST_INFO.service_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_SERVICE_LIST_INFO.service_url

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_SERVICE_LIST_INFO.story_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_SERVICE_LIST_INFO.story_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

class chatbot.models.CB_STORYBOARD_LIST_INFO(intent_id, story_id, story_type, story_desc)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_STORYBOARD_LIST_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_STORYBOARD_LIST_INFO.cb_response_list_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_STORYBOARD_LIST_INFO.cb_service_list_info_set

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

CB_STORYBOARD_LIST_INFO.intent_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_STORYBOARD_LIST_INFO.intent_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_STORYBOARD_LIST_INFO.objects = <django.db.models.manager.Manager object>
CB_STORYBOARD_LIST_INFO.story_desc

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_STORYBOARD_LIST_INFO.story_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_STORYBOARD_LIST_INFO.story_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

class chatbot.models.CB_TAGGING_INFO(id, cb_id, pos_type, proper_noun, parsed_length)[source]

Bases: django.db.models.base.Model

exception DoesNotExist

Bases: django.core.exceptions.ObjectDoesNotExist

exception CB_TAGGING_INFO.MultipleObjectsReturned

Bases: django.core.exceptions.MultipleObjectsReturned

CB_TAGGING_INFO.cb_id

Accessor to the related object on the forward side of a many-to-one or one-to-one relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

child.parent is a ForwardManyToOneDescriptor instance.

CB_TAGGING_INFO.cb_id_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_TAGGING_INFO.id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_TAGGING_INFO.objects = <django.db.models.manager.Manager object>
CB_TAGGING_INFO.parsed_length

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_TAGGING_INFO.pos_type

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

CB_TAGGING_INFO.proper_noun

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

chatbot.serializers module

class chatbot.serializers.CB_DEF_LIST_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_DEF_LIST_INFO

class Meta[source]

Bases: object

fields = ('cb_id', 'chat_cate', 'chat_sub_cate', 'cb_title', 'cb_desc', 'creation_date', 'last_update_date', 'created_by', 'last_updated_by')
model

alias of CB_DEF_LIST_INFO

class chatbot.serializers.CB_ENTITY_LIST_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_STORYBOARD_LIST_INFO

class Meta[source]

Bases: object

fields = ('cb_id', 'intent_id', 'entity_type', 'entity_list')
model

alias of CB_ENTITY_LIST_INFO

class chatbot.serializers.CB_ENTITY_RELATION_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_ENTITY_RELATION_INFO

class Meta[source]

Bases: object

fields = ('cb_id', 'entity_id', 'entity_uuid', 'entity_desc')
model

alias of CB_ENTITY_RELATION_INFO

class chatbot.serializers.CB_INTENT_LIST_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_INTENT_LIST_INFO

class Meta[source]

Bases: object

fields = ('cb_id', 'intent_id', 'intent_type', 'rule_value', 'intent_desc', 'nn_type')
model

alias of CB_INTENT_LIST_INFO

class chatbot.serializers.CB_MODEL_LIST_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_MODEL_LIST_INFO

class Meta[source]

Bases: object

fields = ('cb_id', 'nn_id', 'nn_purpose', 'nn_type', 'nn_label_data', 'nn_desc')
model

alias of CB_MODEL_LIST_INFO

class chatbot.serializers.CB_RESPONSE_LIST_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_RESPONSE_LIST_INFO

class Meta[source]

Bases: object

fields = ('story_id', 'response_type', 'output_entity', 'output_data', 'nn_id')
model

alias of CB_RESPONSE_LIST_INFO

class chatbot.serializers.CB_SERVICE_LIST_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_SERVICE_LIST_INFO

class Meta[source]

Bases: object

fields = ('story_id', 'service_name', 'service_type', 'url')
model

alias of CB_SERVICE_LIST_INFO

class chatbot.serializers.CB_STORYBOARD_LIST_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_STORYBOARD_LIST_INFO

class Meta[source]

Bases: object

fields = ('intent_id', 'story_id', 'story_desc', 'story_type')
model

alias of CB_STORYBOARD_LIST_INFO

class chatbot.serializers.CB_TAGGING_INFO_Serializer(instance=None, data=<class 'rest_framework.fields.empty'>, **kwargs)[source]

Bases: rest_framework.serializers.ModelSerializer

Table : CB_TAGGING_INFO

class Meta[source]

Bases: object

fields = ('cb_id', 'pos_type', 'proper_noun')
model

alias of CB_TAGGING_INFO

chatbot.tests module

chatbot.views module

Module contents